Plot Figure Object

class z2n.plot.Plot()

A class to represent the plot of a time series.

Attributes

  • input : str

    A string that represents the input file path.

  • output : str

    A string that represents the output file name.

  • format : str

    A string that represents the file format.

  • back : int

    A integer for the state of the background.

  • data : Series

    A series object that represents the data.

  • noise : Series

    A series object that represents the background.

Methods

add_background(self)

Add background on the plot.

change_title(self)

Change the title on the figure.

change_xlabel(self)

Change the label on the x axis.

change_xlim(self)

Change the limites on the x axis.

change_xscale(self)

Change the scale on the x axis.

change_ylabel(self)

Change the label on the y axis.

change_ylim(self)

Change the limites on the y axis.

change_yscale(self)

Change the scale on the y axis.

get_format(self)

Return the image format.

get_input(self)

Return the input image name.

get_output(self)

Return the output image name.

plot_background(self)

Create subplot of the background.

plot_figure(self)

Create the figure on the plotting window.

plot_periodogram(self)

Create plot of the periodogram.

rm_background(self)

Remove background on the plot.

save_image(self)

Save the image on a file.

set_format(self)

Change the image format.

set_input(self)

Change the input image name.

set_output(self)

Change the output image name.