我正在使用此代码在箱线图中绘制我的数据:
import matplotlib.pyplot as plt
import numpy as np
from matplotlib.patches import Polygon
random_dists = ['Overlap', 'Non overlap', ]
Overlap= [6,6,5,1,3,4,4,3]
non_overlap= [1,2,6,6,1,3,3,3,3,3,5,2,2]
data = [
Overlap,
non_overlap
]
fig, ax1 = plt.subplots(figsize=(6, 6))
fig.canvas.set_window_title('A Boxplot Example')
fig.subplots_adjust(left=0.075, right=0.95, top=0.9, bottom=0.25)
# bp = ax1.boxplot(data, notch=0, sym='+', vert=1, whis=1.5)
bp = ax1.boxplot(data)
plt.setp(bp['boxes'], color='black')
plt.setp(bp['whiskers'], color='black')
plt.setp(bp['fliers'], color='red', marker='+')
# Add a horizontal grid to the plot, but make it very light in color
# so we can use it for reading data values but not be distracting
ax1.yaxis.grid(True, linestyle='-', which='major', color='lightgrey',
alpha=0.5)
# Hide these grid behind plot objects
ax1.set_axisbelow(True)
ax1.set_title('overlap and non_overlap against mRS')
# ax1.set_xlabel('Distribution')
# ax1.set_ylabel('Value')
# Now fill the boxes with desired colors
box_colors = ['darkkhaki', 'royalblue']
num_boxes = len(data)
medians = np.empty(num_boxes)
for i in range(num_boxes):
box = bp['boxes'][i]
boxX = []
boxY = []
for j in range(5):
boxX.append(box.get_xdata()[j])
boxY.append(box.get_ydata()[j])
box_coords = np.column_stack([boxX, boxY])
# Alternate between Dark Khaki and Royal Blue
ax1.add_patch(Polygon(box_coords, facecolor=box_colors[i % 2]))
# Now draw the median lines back over what we just filled in
我需要的是将数据作为散点图重叠到其中,
我真的很努力地使用链接上的代码,并尝试在 overstack 上搜索以找到解决方案,但我在编码方面不是那么好,我也尝试使用 seaborn 库,但我总是得到一个错误:'list' object has没有属性'get'并且无法修复它所以请任何人帮助()
守着星空守着你
相关分类