Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Report all column results to dbnl
run
data
All data should be reported to dbnl at once. Calling dbnl.report_column_results
more than once will overwrite the previously uploaded data.
Once a Run is closed. You can no longer call report_column_results
to send data to dbnl.
Report all scalar results to dbnl
run
data
All data should be reported to dbnl at once. Calling dbnl.report_scalar_results
more than once will overwrite the previously uploaded data.
Once a Run is closed. You can no longer call report_scalar_results
to send data to DBNL.
The dbnl that the results will be reported to.
A with all the results to report to dbnl. The columns of the DataFrame must match the columns described in the associated with the Run.
The dbnl that the results will be reported to.
A dict or a single-row with all the scalar values to report to dbnl.
Functions related to Column and Scalar data uploaded within a Run.
As a convenience for reporting results and creating a Run, you can also check out report_run_with_results
Retrieve results from dbnl
run
pandas.DataFrame
You can only call get_scalar_results
after the run is closed.
Retrieve results from dbnl
run
ResultData
You can only call get_results
after the run is closed.
Report all results to dbnl
run
column_data
scalar_data
report_results
is the equivalent of calling both report_column_results
and report_scalar_results
.
All data should be reported to dbnl at once. Calling dbnl.report_results
more than once will overwrite the previously uploaded data.
Once a Run is closed. You can no longer call report_results
to send data to DBNL.
Retrieve results from dbnl
run
pandas.DataFrame
You can only call get_column_results
after the run is closed.
The dbnl from which to retrieve the results.
A of the uploaded for the particular Run.
The dbnl from which to retrieve the results.
A named tuple that comprises of columns
and scalars
fields. These are the s of the data for the particular Run.
The DBNL that the results will be reported to.
A with all the column results to report to DBNL. The columns of the DataFrame must match the columns
described in the associated with the Run.
A dict or pandas Dataframe with all the scalar results to report to DBNL. The key of the dict must match the scalars
described in the associated with the Run.
The dbnl from which to retrieve the results.
A of the data for the particular Run.