Open ascension2020 opened 1 year ago
Take a look at datatable. It was built for tabular data and claims to be faster than pandas.
Take a look at datatable. It was built for tabular data and claims to be faster than pandas.
Thanks for the share. I checked it out over the weekend. It is interesting, especially since we work with processing so much text.
Let's sync internally regarding next steps.
There are several ways to read tabular data from a file directly into a Pandas dataframe. E.g.,:
However, it is helpful to be able to read it directly from a variable. This code does the trick:
Tabular data often has a row of dashes (---- ---- ---- ----) between the column headers and the data. In those cases, the "header" and "skiprows" args can be used:
Here is an example: