上一页 1 2 3 4 5 6 7 8 ··· 67 下一页
摘要: 创建虚拟环境 conda create -n superset python=3.6 anaconda 后面加上anaconda,可以不用重复安装原有依赖包 激活 source activate superset 如果要退出,就用 source deactivate superset 安装 pip 阅读全文
posted @ 2020-08-28 18:06 hank-li 阅读(390) 评论(0) 推荐(0) 编辑
摘要: 操作环境 anaconda python3.7 1.下载字体SimHei并完成安装 下载链接: https://www.fontpalace.com/font-download/SimHei/ 2. 复制字体到matplotlib字体目录下的ttf文件里 anaconda3⁩/pkgs⁩/⁨matp 阅读全文
posted @ 2020-08-27 22:56 hank-li 阅读(413) 评论(0) 推荐(0) 编辑
摘要: 打开/etc/hosts文件 追加一下命令 http://github.com 204.232.175.94 http://gist.github.com 107.21.116.220 http://help.github.com 207.97.227.252 http://nodeload.git 阅读全文
posted @ 2020-08-26 08:38 hank-li 阅读(4233) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_41263449/article/details/107584336 https://blog.csdn.net/qq_24267619/article/details/104500099 阅读全文
posted @ 2020-08-25 23:55 hank-li 阅读(388) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/dashi_lu/article/details/89641778 阅读全文
posted @ 2020-08-25 23:12 hank-li 阅读(36382) 评论(0) 推荐(0) 编辑
摘要: 1.查找最晚入职员工的所有信息 select * from employees order by hire_date desc limit 0,1; 2.查找入职员工时间排名倒数第三的员工所有信息 select * from employees order by hire_date desc lim 阅读全文
posted @ 2020-08-20 15:34 hank-li 阅读(409) 评论(0) 推荐(0) 编辑
摘要: 官网下载 https://www.sqlite.org/download.html from: https://www.runoob.com/sqlite/sqlite-installation.html 阅读全文
posted @ 2020-08-17 15:04 hank-li 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 关闭警告 pd.set_option('mode.chained_assignment', None) from: https://zhuanlan.zhihu.com/p/41202576 阅读全文
posted @ 2020-08-13 11:26 hank-li 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 将.ui文件转换为.py文件 方法一: python -m PyQt5.uic.pyuic demo.ui -o demo.py 方法二: D:\Program Files (x86)\Anaconda3\pkgs\pyqt-5.9.2-py37h6538335_2\Library\bin\pyui 阅读全文
posted @ 2020-08-10 16:38 hank-li 阅读(332) 评论(0) 推荐(0) 编辑
摘要: 基础操作 1.修改列名 data.columns=["columns1","columns2","columns3"] 2.找出空值所在行 data[data['column1'].isnull()] #或者 result=data[data.isnull().T.any()] 注意isnull() 阅读全文
posted @ 2020-08-05 11:09 hank-li 阅读(204) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 67 下一页