DataFrames

class getml.project.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()

Deletes all data frames in the current project.

filter(conditional)

Filters the data frames container.

load()

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

retrieve()

Retrieve a dict of all data frames in memory.

save()

Saves all data frames currently in memory to disk.

sort(key[, descending])

Sorts the data frames container.

unload()

Unloads all data frames in the current project from memory.

Attributes

in_memory

Returns the names of all data frames currently in memory.

on_disk

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