ZhangZhihui's Blog |
|
||
2022年1月9日
摘要:
The default is tight_layout. plt.subplots() plt.subplots(constrained_layout=True) constrained_layout can autoextend. 阅读全文
摘要:
for tick in ax2.get_xticklabels(): tick.set_rotation(45) tick.set_size(8) tick.set_ha('right') 阅读全文
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 阅读全文
摘要:
Python code: import base64from io import BytesIOdef fig_to_html(fig): """ Convert a matplotlib.Figure object to html image source :param fig: :return: 阅读全文
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' 阅读全文
摘要:
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 阅读全文
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 阅读全文
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. < 阅读全文
2021年12月9日
摘要:
阅读全文
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 阅读全文
|
Copyright © 2024 ZhangZhihuiAAA
Powered by .NET 9.0 on Kubernetes |