allinaigc commited on
Commit
b2f12fe
·
1 Parent(s): abc0d45

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -120,8 +120,9 @@ async def main():
120
  1. 你需要用提问的语言来回答(如:中文提问你就用中文来回答,英文提问你就用英文来回答)。
121
  2. 如果要求你输出图表,那么图的解析度dpi需要设定为300。图尽量使用seaborn库。seaborn库的参数设定:sns.set(rc={'axes.facecolor':'#FFF9ED','figure.facecolor':'#FFF9ED'}, palette='deep'。
122
  3. matplotlib和seaborn图表上的字体可以设置为中文字体,如下:
123
- plt.titlefontproperties='myfont'
124
- plt.xlabelfontProperties='myfont'
 
125
  sns.set(font='myfont')
126
 
127
  -------------------------------------------------------------------------
 
120
  1. 你需要用提问的语言来回答(如:中文提问你就用中文来回答,英文提问你就用英文来回答)。
121
  2. 如果要求你输出图表,那么图的解析度dpi需要设定为300。图尽量使用seaborn库。seaborn库的参数设定:sns.set(rc={'axes.facecolor':'#FFF9ED','figure.facecolor':'#FFF9ED'}, palette='deep'。
122
  3. matplotlib和seaborn图表上的字体可以设置为中文字体,如下:
123
+ plt.title中:fontproperties=myfont
124
+ plt.xlabel中:fontProperties=myfont
125
+ plt.ylabel中:fontProperties=myfont
126
  sns.set(font='myfont')
127
 
128
  -------------------------------------------------------------------------