Given a text file (.txt) containing comma seperated values such as 6,3,2,6,3,7,6,4,... I want to read the integer values to a pandas data frame with the method .read_csv.
import pandas as pd
data_frame = pd.read_csv(csv_config['path'], sep=",")
The resulting values are stored in data_frame.columns and look like this: 6, 3, 2, 6.1, 3.1, 7, 6.2, 4, ...
Where do the float values come from, when I expected Integer values?