上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 24 下一页
摘要: import matplotlib.pyplot as plt import pandas as pd import numpy as np from pandas import Series, DataFrame # 线形图 s = Series(np.random.randn(10).cumsu 阅读全文
posted @ 2021-09-01 14:26 OTAKU_nicole 阅读(118) 评论(0) 推荐(0) 编辑
摘要: pd.scatter_matrix(trans_data,diagonal='kde',color='k',alpha=0.3)报错,改为pd.plotting.scatter_matrix(trans_data,diagonal='kde',color='k',alpha=0.3) 阅读全文
posted @ 2021-09-01 14:19 OTAKU_nicole 阅读(294) 评论(0) 推荐(0) 编辑
摘要: values.hist(bins=100,alpha=0.3,color='g',normed=True)报错改为density=Truevalues.hist(bins=100,alpha=0.3,color='g',density=True) 阅读全文
posted @ 2021-09-01 11:35 OTAKU_nicole 阅读(1465) 评论(0) 推荐(0) 编辑
摘要: fig, ax = plt.subplots() ax.plot(2, 3) plt.rcParams['font.sans-serif'] = ['SimHei'] # 正常显示中文 ax.set_title('中文标题') plt.show 阅读全文
posted @ 2021-08-31 11:39 OTAKU_nicole 阅读(287) 评论(0) 推荐(0) 编辑
摘要: import re # 描述一个或多个空白符的regex是\s+ text = "foo bar\t baz \tqux" regex = re.compile('\s+') print(regex.split(text)) # 等于 re.split('\s+',text) # ['foo', ' 阅读全文
posted @ 2021-08-30 10:25 OTAKU_nicole 阅读(45) 评论(0) 推荐(0) 编辑
摘要: from pandas import DataFrame,Series import pandas as pd import numpy as np # 如果一个DataFrame的某一列中含有K个不同值,则可以派生出一个K列矩阵 df = DataFrame({'key':['b','b','a' 阅读全文
posted @ 2021-08-27 17:29 OTAKU_nicole 阅读(139) 评论(0) 推荐(0) 编辑
摘要: pd.read_table('movies.dat', sep='::') ParserWarning: Falling back to the 'python' engine because the 'c' engine does not support regex separators (sep 阅读全文
posted @ 2021-08-26 17:58 OTAKU_nicole 阅读(1851) 评论(0) 推荐(0) 编辑
摘要: pd.read_table('movies.dat', sep='::') 增加 encoding='ISO-8859-1' 可解决 pd.read_table('movies.dat', sep='::',encoding='ISO-8859-1') 阅读全文
posted @ 2021-08-26 17:39 OTAKU_nicole 阅读(893) 评论(0) 推荐(0) 编辑
摘要: from selenium.webdriver.common.by import By ''' # 如百度输入框 <input id="kw" name="wd" class="s_ipt" value="" maxlength="255" autocomplete="off"> ''' # css 阅读全文
posted @ 2021-08-04 10:35 OTAKU_nicole 阅读(202) 评论(0) 推荐(0) 编辑
摘要: a = {"A":"1"} b = a b.update({"B":"2"}) print("a",a) print("b",b) '''用=时,修改b时,原字典a被修改 a {'A': '1', 'B': '2'} b {'A': '1', 'B': '2'} ''' a = {"A&quo 阅读全文
posted @ 2021-07-16 11:08 OTAKU_nicole 阅读(92) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 24 下一页