I have two lists, and I use pandas.series method to make it into a table. The table consists of the index column and the data column, the axis is on the top left most of the table which by default is empty, from the axis onwards will be the data column which the name can … Continue reading [python]pandas.series method
Tag: pandas
[python]Read from delimited files and excel and convert to html with Pandas
Thanks to the creator of Pandas, data extraction from excel and delimited text file is made easy. Below is my modified function that suits to be used to extract data from delimited text files and excel files, then they are converted to html. HTML
[python]Data processing with Pandas
I used to use the with context and the open function to open and save data into file, however the module Pandas truly amazed me... It has methods like read_csv, read_excel which reads from csv and excel files, and methods like to_csv which export the data to csv file. How it looks like This file … Continue reading [python]Data processing with Pandas