左边是 ChatGPT 画的,右边是本地画的,相同的代码怎么差这么多?并且代码中并没有显示的设置样式之类的。我怀疑是 ChatGPT 的 python 环境中预设。
1
Jimmyisme OP 拷打 ChatGPT 一天一夜,他就是不肯告诉我这套预设是什么🤬
|
2
Eiden 274 天前
|
3
Jimmyisme OP 搞定了,让 ChatGPT cat 这个 matplotlib 的配置文件就可以了:
```bash !cat /home/sandbox/.config/matplotlib/matplotlibrc ``` ``` STDOUT/STDERR text.color : (0.2,0.2,0.2) # AXES axes.titlesize : 16 axes.labelsize : 12 axes.edgecolor : (0.1,0.1,0.1) #Normalized RGB colours (from 0 to 1 instead of 0 to 255) axes.labelcolor : (0.1,0.1,0.1) axes.linewidth : 1 axes.spines.top : False axes.spines.right : False axes.spines.bottom : True axes.spines.left : True # GRID axes.grid : True grid.alpha : 0.7 grid.linestyle : -- grid.linewidth : 0.6 # LINES axes.prop_cycle : cycler('color', [ '10A37F', '147960','024736']) #hex colours lines.linewidth : 1.5 lines.markeredgewidth : 0.0 # SCATTER PLOT scatter.marker : x # TICKS xtick.labelsize : 12 xtick.color : (0.1,0.1,0.1) xtick.direction : in ytick.labelsize : 12 ytick.color : (0.1,0.1,0.1) ytick.direction : in # FIGURE OUTPUT figure.figsize : 10, 6 figure.dpi : 200 savefig.dpi : 200 ``` |
5
yangzair 274 天前
有时候用 seaborn 画的也很好看,seaborn 就有模板
|