import random
x = ["20{}year".format(i) for i in range(18,23)]
y = [random.randint(1,20) for i in range(5)]
for i in range(len(x)):
plt.bar(x[i],y[i])
plt.title("title")
plt.xlabel("year")
plt.ylabel("number")
plt.show()
python复制代码
for i in range(len(x)):
plt.bar(x[i],y[i],color=(0.2*i,0.2*i,0.2*i),linestyle="--",hatch="o",edgecolor="r")
#i=0,color = (0,0,0); i=1,color=(0.2,0.2,0.2)
#color = (R,G,B)
python复制代码
x = ["20{}year".format(i)for i in range(18,23)]
y = list(random.randint(1,20)for i in range(5))
#y = [random.randint(1,20)for i in range(5)]
y2 = list(random.randint(1,20)for i in range(5))
plt.bar(x,y,lw=0.5,fc="r")
# lw:length wide ,fc:face color
plt.bar(x,y2,Lw=0.5,fc="b",bottom=y)
# bottom:控制哪个图显示在底部
python复制代码
x = ["20{}year".format(i)for i in range(18,23)]
y = list(random.randint(1,20)for i in range(5))
y2 = list(random.randint(1,20)for i in range(5))
x_width = range(0,len(x))
x2_width = [i+0.3 for i in x_width]
plt.bar(x_width,y,lw=0.5,fc="r",width=0.3)
plt.bar(x2_width,y2,lw=0.5,fc="b",width=0.3)
plt.xticks(range(0,5),x)
#(刻度位置,标签)
python复制代码
x = ["20{}year".format(i)for i in range(18,23)]
y = list(random.randint(1,20)for i in range(5))
y2 = list(random.randint(1,20)for i in range(5))
x_width = range(0,len(x))
x2_width = [i+0.3 for i in x_width]
plt.barh(x_width,y,lw=0.5,fc="r",height=0.3,label="cat")
plt.barh(x2_width,y2,Lw=0.5,fc="b",height=0.3,label="dog")
plt.yticks(range(0,5),x)
plt.legend()
plt.title("title")
plt.ylabel("year")
plt.xlabel("number")
plt.show()
python复制代码
x = ["20{}year".format(i)for i in range(18,23)]
y = list(random.randint(1,20)for i in range(5))
y2 = list(random.randint(1,20)for i in range(5))
plt.plot(x,y,color="pink",linestyle="--")
plt.plot(x,y2,color="skyblue",linestyle="-.")
#柱状图
plt.bar(x,y,lw=0.5,fc="r",width=0.3,alpha=0.5)
plt.bar(x,y2,lw=0.5,fc="b",width=0.3,alpha=0.5,bottom=y)
#alpha:控制透明度,[0,1]
for i,j in zip(x,y):
plt.text(i,j,"%d"%j,ha="center",va="bottom")
for i2,j2 in zip(x,y2):
plt.text(i2,j2,"%d"%j2,ha="center",va="bottom")
python复制代码
x = ["20{}year".format(i)for i in range(18,23)]
y = list(random.randint(1,20)for i in range(5))
y2 = list(random.randint(-20,-1)for i in range(5))
ax = plt.gca()
# 获取当前的axes
ax.spines ["bottom"].set_position(('data',0))
# ax.spinesp["bottom"]:底部边界线(x轴)
# ax.spines["bottom"].set_position():设置x轴位置
plt.bar(x,y,lw=0.5,fc="r",width=0.3)
plt.bar(x,y2,lw=0.5,fc="b",width=0.3)
for i,j in zip(x,y):
plt.text(i,j,"%d"%j,ha="center",va="top")
for i2,j2 in zip(x,y2):
plt.text(12,-j2,"%d"%j2,ha="center",va="bottom")
python复制代码
import matplotlib.pyplot as plt#导入绘图库
from sklearn.linear_model import LogisticRegression
#逻辑回归模型
from sklearn import metrics
from sklearn.datasets import load_breast_cancer#数据集
from sklearn.model_selection import train_test_split
import warnings
warnings.filterwarnings('ignore')
python复制代码
#读取数据
breast_cancer = load_breast_cancer()
X = breast_cancer.data
y = breast_cancer.target
model = LogisticRegression()
trainx,testx,trainy,testy = train_test_split(X,y,test_size=0.2,random_state=42)
model.fit(trainx,trainy)#对训练集进行训练
#模型预测
prey=model.predict(testx)#预测的类标签--O或者1
preproba=model.predict_proba(testx)#preproba包含样本为0的概率和为l的概率