10 2022 档案
摘要:什么是交叉验证 http://ui.itheima.com/news/20211029/105309.html 统计学相关术语和知识库 https://stattrek.com/statistics/dictionary?definition=coefficient_of_determination
阅读全文
摘要:显示中文乱码问题 import matplotlib.pyplot as plt # mac中 plt.rcParams['font.sans-serif']='Heiti TC' # windows中 plt.rcParams['font.family'] = ['sans-serif'] plt
阅读全文
摘要:1. 自带的ssh文件夹在 ~/.ssh下面,可以在终端输入"open ~/.ssh" 进入该文件夹 2. 在finder/访达按 shift+command+G 可以进入平时看不到(任意)的文件夹 3. ~是个人目录也即是/Users/你的用户名,而./是当前目录
阅读全文
摘要:如何在mac中打开QtDesigner https://www.likecs.com/show-204068540.html 白夜黑羽qt教程 https://www.byhy.net/tut/py/gui/qt_01/ Qt for Python Example https://doc.qt.io
阅读全文
摘要:访问第i行数据 df.iloc[i] 访问列名为a的列数据 df[a] 获取所有列名 df.columns df.columns.values list(df.columns.values) 填充空值 df.fillna(value, method) 统计 df.count() 字符串转换成日期 d
阅读全文
摘要:astropy文档 https://docs.astropy.org/en/stable/index.html 什么是fits https://fits.gsfc.nasa.gov fits-header里的常见字段 https://heasarc.gsfc.nasa.gov/docs/fcg/st
阅读全文