@@ -319,54 +319,3 @@ def subplot_galaxy_images(self):
319319 auto_filename = f"subplot_galaxy_images"
320320 )
321321 self .close_subplot_figure ()
322-
323- def subplot_galaxies_1d (self ):
324- """
325- Output a subplot of attributes of every individual 1D attribute of the `Galaxy` object.
326-
327- For example, a 1D plot showing how the image, convergence of each component varies radially outwards.
328-
329- If the plotter has a 1D grid object this is used to evaluate each quantity. If it has a 2D grid, a 1D grid is
330- computed from the light profile. This is performed by aligning a 1D grid with the major-axis of the light
331- profile in projection, uniformly computing 1D values based on the 2D grid's size and pixel-scale.
332- """
333- number_subplots = len (self .galaxies ) * 3
334-
335- self .open_subplot_figure (number_subplots = number_subplots )
336-
337- for galaxy_index in range (0 , len (self .galaxies )):
338- galaxy_plotter = self .galaxy_plotter_from (galaxy_index = galaxy_index )
339-
340- galaxy_plotter .figures_1d (image = True )
341- galaxy_plotter .figures_1d (convergence = True )
342- galaxy_plotter .figures_1d (potential = True )
343-
344- self .mat_plot_1d .output .subplot_to_figure (auto_filename = "subplot_galaxies_1d" )
345- self .close_subplot_figure ()
346-
347- def subplot_galaxies_1d_decomposed (self ):
348- """
349- Output a subplot of attributes of every individual 1D attribute of the `Galaxy` object decompoed into
350- their different light and mass profiles.
351-
352- For example, a 1D plot showing how the image, convergence of each component varies radially outwards.
353-
354- If the plotter has a 1D grid object this is used to evaluate each quantity. If it has a 2D grid, a 1D grid is
355- computed from the light profile. This is performed by aligning a 1D grid with the major-axis of the light
356- profile in projection, uniformly computing 1D values based on the 2D grid's size and pixel-scale.
357- """
358- number_subplots = len (self .galaxies ) * 3
359-
360- self .open_subplot_figure (number_subplots = number_subplots )
361-
362- for galaxy_index in range (0 , len (self .galaxies )):
363- galaxy_plotter = self .galaxy_plotter_from (galaxy_index = galaxy_index )
364-
365- galaxy_plotter .figures_1d_decomposed (image = True )
366- galaxy_plotter .figures_1d_decomposed (convergence = True )
367- galaxy_plotter .figures_1d_decomposed (potential = True )
368-
369- self .mat_plot_1d .output .subplot_to_figure (
370- auto_filename = "subplot_galaxies_1d_decomposed"
371- )
372- self .close_subplot_figure ()
0 commit comments