DataFrames

class getml.data.DataFrames(data=None)[source]

Container which holds all data frames associated with the running project that are currently stored in memory. The container supports slicing and is sort- and filterable.

Methods

delete_all([mem_only])

Deletes all data frames in the current project.

filter(conditional)

Filters the data frames container.

load_all()

Loads all data frames stored in the project folder to memory.

retrieve_all()

Retrieve a dict of all data frames in memory.

save_all()

Saves all data frames curently in memory to disk.

sort(key[, descending])

Sorts the data frames container.

Attributes

in_memory

Returns the names of all data frames currently in memory.

in_project_folder

Returns the names of all data frames stored in the project folder.