load_data_frameΒΆ

Retrieves a DataFrame handler of data in the getML engine.

A data frame object can be loaded regardless if it is held in memory or not. It only has to be present in the current project and thus listed in the output of list_data_frames().

Args:
name (str):

Name of the data frame.

Examples:

d, _ = getml.datasets.make_numerical(population_name = 'test')
d2 = getml.data.load_data_frame('test')
Returns:
DataFrame:

Handle the underlying data frame in the getML engine.