get_fit_data

get_fit_data(data_source: str, model_name='logistic_curve', kind='plot') → pandas.core.frame.DataFrame[source]

Convenience function to quickly get the fitted data from the supported sources.

Parameters
  • data_source (str) – Name of the source the fitted data was fetched from.

  • model_name (str, optional) – Name of the model which was used for fitting, by default “logistic_curve”

  • kind (str, optional) – kind of data you want to retrieve, by default “plot”

Returns

Plot data or parameters, depending on ‘kind’

Return type

pd.DataFrame

Raises
  • ValueError – If the model_name isn’t supported

  • ValueError – If the data_source isn’t supported