UserSpace.new_cells_from_csv#
- UserSpace.new_cells_from_csv(filepath, cells=None, param=None, *args, **kwargs)[source]#
Create cells from a comma-separated values (csv) file.
Warning
This method is deprecated.
This method internally calls Pandas read_csv function, and creates cells by passing the returned DataFrame object to
new_cells_from_pandas()
. Thefilepath
argument to this method is passed to to read_csv asfilepath_or_buffer
, and the user can pass other arguments to read_csv by supplying those arguments to this method as variable-length parameters,args
andkargs
.- Parameters
filepath (str, path object, or file-like object) – Path to the file.
cells – Sequence of strings to set cells name. string is also accepted if read_csv returns a Series because of its
squeeze
parameter set toTrue
.param – Sequence of strings to set parameter name(s). A single string can also be passed to set a single parameter name when
frame
has a single level index (i.e. not MultiIndex).args – Any positional arguments to be passed to read_csv.
kwargs – Any keyword arguments to be passed to read_csv.
See also
new_space_from_csv()
: Create Spaces and Cells from CSV.Changed in version 0.20.0: this method is deprecated.