diff --git a/cml/ports/source_adapters.py b/cml/ports/source_adapters.py
index 038b6c927c2bd121a6c74bc4dd0500f3b41a35b0..1943db14647ed5ffa676256684c6afe9de8b23d7 100644
--- a/cml/ports/source_adapters.py
+++ b/cml/ports/source_adapters.py
@@ -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