摘要:
代码案例 <!doctype html> <html> <head> <title>Timeline</title> <script type="text/javascript" src="https://unpkg.com/vis-timeline@latest/standalone/umd/vi 阅读全文
摘要:
安装依赖库 pip install selenium 打开谷歌浏览器,搜索框输入如下,查看版本 chrome://version 下载驱动 解压后,将驱动放到python安装目录Scripts文件夹下 测试代码 from time import sleep from selenium import 阅读全文
摘要:
合并 s1 = pd.Series([1,2,3,4],index=['a','b','c','d'],name="列1") s2 = pd.Series([5,6,7,8],index=['a','b','c','e'],name='列2') print(s1) print(s2) output 阅读全文
摘要:
设置 -> 时间和语言 -> 语言 -> 首选语言 -> 选项 -> 键盘 -> 微软拼音 -> 选项 -> 常规 -> 兼容性 -> 开 阅读全文
摘要:
箱型图 01 import pandas as pd import seaborn as sns titanic=pd.read_csv('C:\\work\\titanic.csv') titanic.head() 点击查看详情 02 # age列 sns.boxplot(y=titanic["a 阅读全文
摘要:
折线图 01 import pandas as pd import seaborn as sns flights=pd.read_csv('C:\\work\\flights.csv') flights.head() 点击查看详情 02 # 设置x轴和y轴 may_flights =flights. 阅读全文
摘要:
新建 输入名称 选择虚拟环境,执行 添加代码或文档 启动jupyter配置 复制 使用 阅读全文