ZhangZhihui's Blog  
上一页 1 ··· 64 65 66 67 68 69 70 71 72 ··· 78 下一页

2022年1月9日

摘要: The default is tight_layout. plt.subplots() plt.subplots(constrained_layout=True) constrained_layout can autoextend. 阅读全文
posted @ 2022-01-09 11:13 ZhangZhihuiAAA 阅读(62) 评论(0) 推荐(0) 编辑
 
摘要: for tick in ax2.get_xticklabels(): tick.set_rotation(45) tick.set_size(8) tick.set_ha('right') 阅读全文
posted @ 2022-01-09 10:40 ZhangZhihuiAAA 阅读(34) 评论(0) 推荐(0) 编辑

2022年1月8日

摘要: def axes_show_y_value(axes, x_data, y_data): for x, y in zip(x_data, y_data): axes.annotate(str(y), # this is the text (x, y), # these are the coordin 阅读全文
posted @ 2022-01-08 18:07 ZhangZhihuiAAA 阅读(47) 评论(0) 推荐(0) 编辑
 
摘要: Python code: import base64from io import BytesIOdef fig_to_html(fig): """ Convert a matplotlib.Figure object to html image source :param fig: :return: 阅读全文
posted @ 2022-01-08 16:32 ZhangZhihuiAAA 阅读(30) 评论(0) 推荐(0) 编辑

2022年1月7日

摘要: import pandas as pd df = pd.DataFrame([[2001, 'D', 2], [2004, 'T', 3], [2003, 'T', 5], [2001, 'T', 4], [2004, 'D', 7]], columns=['year', 'type', 'cnt' 阅读全文
posted @ 2022-01-07 22:14 ZhangZhihuiAAA 阅读(8) 评论(0) 推荐(0) 编辑
 
摘要: print(df_year_month) print(' ') print(df_year_month.index) print(df_year_month.index.tolist()) print(' ') print(df_year_month.index.levels[0]) print(d 阅读全文
posted @ 2022-01-07 22:12 ZhangZhihuiAAA 阅读(25) 评论(0) 推荐(0) 编辑

2021年12月24日

摘要: import sqlite3 from apps.app.env_settings import MAS_DB con = sqlite3.connect(MAS_DB) def list_tables(p=False): cursor = con.cursor() tables_list = cu 阅读全文
posted @ 2021-12-24 15:29 ZhangZhihuiAAA 阅读(87) 评论(0) 推荐(0) 编辑

2021年12月21日

摘要: Just set display to none. .btn-hidden {display:none;} HTML5 adds a new global attribute named [hidden], which is styled as display: none by default. < 阅读全文
posted @ 2021-12-21 11:02 ZhangZhihuiAAA 阅读(36) 评论(0) 推荐(0) 编辑

2021年12月9日

摘要: 阅读全文
posted @ 2021-12-09 22:16 ZhangZhihuiAAA 阅读(26) 评论(0) 推荐(0) 编辑

2021年3月11日

摘要: When you set up a virtual network, you define the internal address space in Classless Interdomain Routing (CIDR) format. This address space needs to b 阅读全文
posted @ 2021-03-11 16:05 ZhangZhihuiAAA 阅读(52) 评论(0) 推荐(0) 编辑
上一页 1 ··· 64 65 66 67 68 69 70 71 72 ··· 78 下一页