Last active
June 27, 2024 15:36
-
-
Save vinayak-mehta/e5949f7c2410a0e12f25d3682dc9e873 to your computer and use it in GitHub Desktop.
A jupyter notebook showing how Camelot can be used to extract tables from PDFs scraped from the IDSP website.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are two ways to manually edit the value of a cell. The first is by the
atkeyword.df.at[index, 'column_name'] = new_valueis the way to update a cell. The second way is to useiatkeyword and this format isdf.iat[row_index, column_index]. Theiatmethod can be faster since there is no need to do a lookup.