用一个pandas写一个比较简单的会计案例分析并画图
时间: 2024-09-18 16:05:04 浏览: 54
在Python中,我们可以使用Pandas库来进行简单的企业会计案例分析。假设我们有一个包含销售额、成本和利润的DataFrame,例如:
```python
import pandas as pd
import matplotlib.pyplot as plt
# 假设数据是一个字典列表,代表每月财务信息
data = [
{"月份": "Jan", "销售额": 50000, "成本": 30000},
{"月份": "Feb", "销售额": 60000, "成本": 35000},
{"月份": "Mar", "销售额": 70000, "成本": 40000},
# 更多月份...
]
df_accounting = pd.DataFrame(data)
# 计算利润
df_accounting['利润'] = df_accounting['销售额'] - df_accounting['成本']
# 绘制销售额、成本和利润随时间的变化趋势
fig, ax = plt.subplots(figsize=(10, 6))
ax.plot(df_accounting['月份'], df_accounting['销售额'], label='销售额')
ax.plot(df_accounting['月份'], df_accounting['成本'], label='成本')
ax.plot(df_accounting['月份'], df_accounting['利润'], label='利润', color='r')
ax.set_xlabel('月份')
ax.set_ylabel('金额')
ax.legend()
plt.title('会计案例季度销售额、成本及利润对比')
plt.show()
阅读全文