Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将包 Plots 与 pyplot 后端一起使用。默认情况下,误差线是黑色的。我怎样才能改变它们的颜色?我想将它设置为与线本身相同的颜色(这应该是默认行为恕我直言)。
using Plots plot(1:3,1:3,yerr=0.1) # produces a blue line with black errorbars
markerstrokecolor/msc设置颜色。通常,您也会在绘图上放置点,而不仅仅是带有误差线的线,因此默认情况下每个点周围的笔画与误差线的颜色相同。如果您觉得另一个默认值更好,欢迎您在 Plots 上打开一个问题。
markerstrokecolor
msc