我使用matplotlib创建直方图。我仍然无法通过自己或在互联网的帮助下解决问题。
如何更改某些垃圾箱的颜色?详细地说,我想用以下方法改变箱子的颜色:a。)值箱< 1.15 red,b。)值1.15< bin< 1.25 c。)值> 1.25红色?
如何将X轴标记为带有1位小数但带有2位小数的数字(现在只是没有绘制)?
import matplotlib.pyplot as plt
import numpy as np
import csv
thickness = [] #gets thickness from list
bins = [1.00,1.01,1.02,1.03,1.04,1.05,1.06,1.07,1.08,1.09,1.10,1.11,1.12,1.13,1.14,1.15,1.16,1.17,1.18,1.19,1.20,1.21,1.22,1.23,1.24,1.25,1.26,1.27,1.28,1.29,1.30,1.31,1.32,1.33,1.34,1.35,1.36,1.37,1.38,1.39,1.40,1.41,1.42,1.43,1.44,1.45,1.46,1.47,1.48,1.49,1.50
] #set bins manuelly
with open('control.txt','r') as csvfile:
plots = csv.reader(csvfile, delimiter=',')
for row in plots:
#x.append(float(row[0]))
thickness.append(float(row[1]))
plt.hist(thickness, bins, align='left', histtype='bar', rwidth=0.8, color='green')
plt.xlabel('thickness [mm]')
plt.ylabel('frequency')
plt.title('Histogram')
plt.show()
请参阅下面的绘制直方图:
答案 0 :(得分:0)
这样的事情(可能存在一些错误):
import matplotlib.pyplot as plt
import numpy as np
import csv
from matplotlib.ticker import FormatStrFormatter
thickness = [] #gets thickness from list
bins = [1.00,1.01,1.02,1.03,1.04,1.05,1.06,1.07,1.08,1.09,1.10,1.11,1.12,1.13,1.14,1.15,1.16,1.17,1.18,1.19,1.20,1.21,1.22,1.23,1.24,1.25,1.26,1.27,1.28,1.29,1.30,1.31,1.32,1.33,1.34,1.35,1.36,1.37,1.38,1.39,1.40,1.41,1.42,1.43,1.44,1.45,1.46,1.47,1.48,1.49,1.50
] #set bins manuelly
with open('control.txt','r') as csvfile:
plots = csv.reader(csvfile, delimiter=',')
for row in plots:
#x.append(float(row[0]))
thickness.append(float(row[1]))
h,bins = plt.hist(thickness, bins)
plt.clf()
fig, ax = plt.subplots()
ax.bar(bins[bins<1.2],h[bins<1.2],rwidth=0.8, color='red')
plt.bar(bins[np.logical_and(bins>1.2,bins<1.5)],h[np.logical_and(bins>1.2,bins<1.5)],rwidth=0.8, color='green')
ax.bar(bins[bins>1.5],h[bins>1.5],rwidth=0.8, color='red')
ax.set_xlabel('thickness [mm]')
ax.set_ylabel('frequency')
ax.set_title('Histogram')
ax.yaxis.set_major_formatter(FormatStrFormatter('%.2f'))
plt.show()