Skip to content
Snippets Groups Projects
Commit bbb66be9 authored by dmt's avatar dmt
Browse files

Do read first column as index.

parent 44c613f7
No related branches found
No related tags found
No related merge requests found
......@@ -157,7 +157,7 @@ class PandasAdapter:
@classmethod
def read_csv_data(cls, path):
data_frame = pd.read_csv(path)
data_frame = pd.read_csv(path, index_col=False)
return PandasAdapter(data_frame)
@property
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment