返回顶部
摘要: 今日内容概要 matplotlib画各种图形 数据操作补充 数据清洗 网络爬虫 今日内容详细 matplotlib画各种图形 # 首先导入模块 import numpy as np import pandas as pd import matplotlib.pyplot as plt x = [2, 阅读全文
posted @ 2020-09-08 15:11 Satan—yuan 阅读(472) 评论(1) 推荐(1)
摘要: 今日内容概要 时间序列 针对表格数据的分组与聚合操作 其他函数补充(apply) 练习题(为了加深对DataFrame操作的印象) mataplotlib画图模块 今日内容详细 时间序列处理 时间序列类型 1.时间戳 2.具体日期 3.时间间隔 # 灵活处理时间对象dateutil包 import 阅读全文
posted @ 2020-09-08 15:09 Satan—yuan 阅读(272) 评论(1) 推荐(1)
摘要: 今日内容概要 目标:将Pandas尽量结束 如何读取外部excel文件数据到DataFrame中 针对DataFrame的常用数据操作 索引与切片 操作DataFrame的字段名称 时间对象序列操作 数据分组与聚合 练习题 今日内容详细 如何读取外部excel文件数据到DataFrame中 df = 阅读全文
posted @ 2020-09-08 15:03 Satan—yuan 阅读(217) 评论(1) 推荐(1)