Home > Mobile >  Google colab, data frame data displayed not in columns
Google colab, data frame data displayed not in columns

Time:11-11

Why data not displayed in columns?

df.info() also display data not in columns

CodePudding user response:

as you can see columns seperate with ;. so you you have to define a separator :

df = pd.read_csv("abc.csv", sep = ';' )
  • Related