在Python Pandas中改变数字大小
图的大小可以通过将所需尺寸作为一个元组传递给plot()方法的figsize参数来修改,它被用来确定图对象的大小。
语法:
figsize=(width, height)
其中尺寸应以英寸为单位。
步骤
- 导入pandas。
- 创建或加载数据
- 调用带有figsize参数和尺寸的plot()函数。
示例 1
import pandas as pd # import the pandas module
# python list of numbers
data1 = [10, 20, 50, 30, 15]
# convert the list to a pandas series
s1 = pd.Series(data1)
# creates a figure of size 20 inches wide and 10 inches high
s1.plot(figsize=(20, 10))
输出:
示例 2
# import the pandas module
import pandas as pd
# Creating a pandas dataframe
df = pd.DataFrame({'names': ['A', 'B', 'C', 'D'], 'val': [10, 45, 30, 20]})
# creates a bar graph of size 15 inches wide and 10 inches high
df.plot.bar(x='names', y='val', rot=0, figsize=(15, 10))
输出 :
示例 3
# import the pandas module
import pandas as pd
# Creating a pandas dataframe with index
df = pd.DataFrame({'value': [3.330, 4.87, 5.97]},
index=['Item 1', 'Item 2', 'Item 3'])
df.plot.pie(y='value', figsize=(5, 5))
输出 :