Home > Mobile >  I need to splite a column of dataframe into rows
I need to splite a column of dataframe into rows

Time:04-08

I have some dataframe that contains a column with a sequence of data I need to split it into multiple lines.

example:

import pandas as pd

example = { 'Name': ['Tom', 'Bob', 'Harry'],
         'Age': [22, 21, 24],
         'Basket' : ['bread%milk           
  • Related