pip install matplotlib
import matplotlib.pyplot as plt
import numpy as np
# 创建数据
x = np.linspace(0, 10, 100)
y = np.sin(x)
# 创建基本线图
plt.plot(x, y)
plt.xlabel('X轴')
plt.ylabel('Y轴')
plt.title('正弦函数')
plt.show()
pip install seaborn
import seaborn as sns
import matplotlib.pyplot as plt
# 创建数据
data = sns.load_dataset("iris")
# 创建基本散点图
sns.scatterplot(data=data, x="sepal_length", y="sepal_width", hue="species")
plt.title('鸢尾花数据集散点图')
plt.show()
pip install plotly
import plotly.express as px
# 创建数据
df = px.data.iris()
# 创建基本散点图
fig = px.scatter(df, x='sepal_width', y='sepal_length', color='species', title='鸢尾花数据集散点图')
fig.show()
pip install bokeh
from bokeh.plotting import figure, show
from bokeh.io import output_notebook
import numpy as np
# 在Jupyter Notebook中输出
output_notebook()
# 创建数据
x = np.linspace(0, 10, 100)
y = np.sin(x)
# 创建基本线图
p = figure(title="正弦函数")
p.line(x, y, legend_label="sin(x)", line_width=2)
show(p)
Matplotlib:
Seaborn:
Plotly:
Bokeh:
① Python所有方向的学习路线图
,清楚各个方向要学什么东西
② 100多节Python课程视频
,涵盖必备基础、爬虫和数据分析
③ 100多个Python实战案例
,学习不再是只会理论
④ 华为出品独家Python漫画教程
,手机也能学习
⑤ 历年互联网企业Python面试真题
,复习时非常方便