StatisKit / Core

A Collection of Basic Utilities for Statistical Analyses
http://statiskit-core.rtfd.io/
Apache License 2.0
0 stars 7 forks source link

Data loading specification #77

Open pfernique opened 5 years ago

pfernique commented 5 years ago

For a given Python interface of a StatisKit software component (e.g., StatisKit-Core), to load a data frame (e.g., data), an user must be able to type:

from statiskit import core
data = core.load_data("data")

For now, we consider:

To do so, a load_data function could defined in src/py/statiskit/core/_tools.py file. Using a the __file__ variable of a __init__.py module file as input, this function should be able to load a data file from its basename prefix (e.g., use the input string "data" for loading the dataframe saved in the "data.dsv" file).