watex.view.TPlot.plot_recovery#

TPlot.plot_recovery(site='S00')[source]#

visualize the restored tensor per site.

Parameters

site (str, int, default ="S00") – Site/station name for

Returns

``self`` – returns self for chaining methods.

Return type

watex.view.plot.TPlot instanciated object

Examples

>>> from watex.view import TPlot
>>> from watex.datasets import load_edis
>>> edi_data = load_edis (return_data =True, samples =7)
>>> plot_kws = dict( ylabel = '$Log_{10}Frequency [Hz]$',
            xlabel = '$Distance(m)$',
            cb_label = '$Log_{10}Rhoa[\Omega.m$]',
            fig_size =(7, 4),
            font_size =7.
            )
>>> t= TPlot(**plot_kws ).fit(edi_data)
>>> # plot recovery of site 'S01'
>>> t.plot_recovery ('S01')