scatter_plot¶
Produces a scatter_plot with optional trend fitting
Example¶
>>> df=DataFrame()
>>> df.read_tbl('data/iqbrainsize.txt', delimiter='\t')
>>> df.scatter_plot('TOTVOL', 'FIQ')
produces ‘scatter(TOTVOL_X_FIQ).png’
Example with power trend fit¶
>>> df.scatter_plot('TOTVOL', 'FIQ', trend='power')
produces ‘scatter(TOTVOL_X_FIQ,trend=power).png’