Python data analysis: pandas handles Excel tables

WBOY
Release: 2022-05-13 20:14:35
forward
3997 people have browsed it

This article brings you relevant knowledge about python, which mainly introduces some issues about the basics of data analysis, including reading other files, pivot tables, etc., as follows Let's take a look, I hope it will be helpful to everyone.

Python data analysis: pandas handles Excel tables

Recommended learning: python video tutorial

(1) Reading other files

Continue Next, we read three types of files csvtsvtxt files. It is worth noting that the same method is used to read these three types of files, that is pd.read_csv(file), when reading an excel table, you need to pay attention to the separator and use the parameter sep='' to separate. Next, let’s take a look at how to operate it in excel and pandas!

1.excel reads other files

Import external data from excel
Python data analysis: pandas handles Excel tables

1.1 Import csv file

When importing a csv file, select comma as the separator.

Python data analysis: pandas handles Excel tables

1.2 Import tsv file

Import tsv file, select tab key as separator

Python data analysis: pandas handles Excel tables

1.3 Import txt text file

When importing txt file, pay attention to what symbols are used to separate the text and customize the delimiter.

Python data analysis: pandas handles Excel tables

2.pandas reads other files

In pandas, whether it is reading csv files, tsv files or txt Files are read using the read_csv() method, and separated by the sep() parameter.

2.1 Read csv file

import pandas as pd

# 导入csv文件
test1 = pd.read_csv('./excel/test12.csv',index_col="ID")
df1 = pd.DataFrame(test1)

print(df1)
Copy after login

2.2 Read tsv file

The tab key is represented by \t

import pandas as pd

# 导入tsv文件
test3 = pd.read_csv("./excel/test11.tsv",sep='\t')
df3 = pd.DataFrame(test3)

print(df3)
Copy after login

2.3 Read txt file

import pandas as pd

# 导入txt文件
test2 = pd.read_csv("./excel/test13.txt",sep='|')
df2 = pd.DataFrame(test2)

print(df2)
Copy after login

Result:
Python data analysis: pandas handles Excel tables

(2) Pivot table

in There are many types of data in excel, and they are divided into many types. At this time, using a pivot table will be very convenient and intuitive to analyze the various data we want.
Example: Draw the following data into a pivot table, and draw the annual sales by general category!

1. Make a pivot table in excel

needs to be divided by year, then we need to split the date column and the year separate it. Then select the PivotTable under the data column and select the area.
Python data analysis: pandas handles Excel tables
Then drag each part of the data to each area.
Python data analysis: pandas handles Excel tables

Result:
Python data analysis: pandas handles Excel tables

This completes the creation of the pivot table in excel.

So how to achieve this effect in pandas?

2. Draw a pivot table in pandas

The function for drawing a pivot table is: df.pivot_lable(index, columns, values), and finally sum the data.

import pandas as pd
import numpy as np

pd.options.display.max_columns =999
test = pd.read_excel('./excel/test14.xlsx')
df = pd.DataFrame(test)
# 将年份取出并新建一个列名为年份的列
df['year'] = pd.DatetimeIndex(df['Date']).year
# 绘制透视表
table = df.pivot_table(index='总类',columns='year',values='销售额',aggfunc=np.sum)
df1 = pd.DataFrame(table)
df1['总计'] = df1[[2011,2012,2013,2014]].sum(axis=1)


print(df1)
Copy after login

Result:
Python data analysis: pandas handles Excel tables

In addition, you can also use the groupby function to draw the data table. Here, the total category and year are grouped to calculate the total sales and sales quantity.

import pandas as pd
import numpy as np

pd.options.display.max_columns =999
test = pd.read_excel('./excel/test14.xlsx')
df = pd.DataFrame(test)
# 将年份取出并新建一个列名为年份的列
df['year'] = pd.DatetimeIndex(df['Date']).year

# groupby方法
group = df.groupby(['总类','year'])

s= group['销售额'].sum()
c = group['ID'].count()

table = pd.DataFrame({'sum':s,'total':c})

print(table)
Copy after login

Result:
Python data analysis: pandas handles Excel tables

Recommended learning: python video tutorial

The above is the detailed content of Python data analysis: pandas handles Excel tables. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!