上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 29 下一页
摘要: import pandas as pd #pd.options.display.max_columns = None # 也ok,亲测 pd.set_option('display.max_columns', None) pd.set_option('display.max_rows', None) 阅读全文
posted @ 2021-02-28 08:39 kuanleung 阅读(3) 评论(0) 推荐(0)
摘要: 留言:数据库是很简单的操作,对于拥有编程基础的同学来说,相当于一个人第一次接触word编辑。所以学习不要惧怕,入门是很快的;耐住性子花两天时间解决基础理论,实际操作放在实践中。 摘录于: https://cloud.tencent.com/developer/article/1563173?from 阅读全文
posted @ 2021-02-24 20:53 kuanleung 阅读(7) 评论(0) 推荐(0)
摘要: import pandas as pd import numpy as np pd.options.display.max_columns = None p_df = pd.read_excel('产量.xlsx') p_ratio = pd.read_excel('养殖配比.xls') xunib 阅读全文
posted @ 2021-02-21 16:00 kuanleung 阅读(5) 评论(0) 推荐(0)
摘要: import pandas as pd pd.options.display.max_columns = None data = pd.read_csv(r'总.csv',encoding='utf-8') # DM_MCI DM_MCI = data.iloc[0:22,:].describe() 阅读全文
posted @ 2021-02-20 21:23 kuanleung 阅读(22) 评论(0) 推荐(0)
摘要: pandas的基础操作进行数值计算 import pandas as pd import numpy as np pd.options.display.max_columns = None p_df = pd.read_excel('产量.xlsx') p_ratio = pd.read_excel 阅读全文
posted @ 2021-02-20 15:50 kuanleung 阅读(7) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/cpc784221489/article/details/92085702 点击链接 阅读全文
posted @ 2021-02-13 20:52 kuanleung 阅读(7) 评论(0) 推荐(0)
摘要: 入门资源 https://www.bilibili.com/video/BV1RK4y1H7he/ 阅读全文
posted @ 2021-01-30 09:03 kuanleung 阅读(4) 评论(0) 推荐(0)
摘要: import tensorflow as tf import numpy as np import matplotlib.pyplot as plt def himmelblau(x): return (x[0]**2 + x[1]-11)**2 + (x[0]+x[1]**2-7)**2 x = 阅读全文
posted @ 2021-01-16 12:29 kuanleung 阅读(9) 评论(0) 推荐(0)
摘要: import matplotlib.pyplot as plt import numpy as np import seaborn as sns from sklearn.datasets import make_moons from sklearn.model_selection import t 阅读全文
posted @ 2021-01-15 10:53 kuanleung 阅读(2) 评论(0) 推荐(0)
摘要: GTAP的github项目 https://github.com/andre-barbe/Auto-GTAP/blob/master/docs/components-of-auto-gtap.md https://github.com/andre-barbe/Auto-GTAP 开始反向破译,突然发 阅读全文
posted @ 2021-01-14 19:28 kuanleung 阅读(4) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 29 下一页