Currently i have a dataframe of a PDF file converted into a CSV file format, So the PDF consist of 4 pages and it is all coming in one data frame.
So my goal is to divide the data frame according to the page_num.
For Example:
page_num word_num left top width text
1 1 322 14 14 My
1 2 304 4 41 Name
1 3 322 5 9 is
1 4 316 14 20 Raghav
2 1 420 129 34 Problem
2 2 420 31 27 just
2 3 420 159 27 got
2 4 431 2 38 complicated
3 1 322 14 14 #40
3 2 304 4 41 @gmail.com
3 1 420 129 34 2019
3 2 420 31 27 January
SO using pandas library i wanted to split my dataframe(df) into 3 dataframes(df1, df2, df3).
Thanks!