会员
T恤
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
二豆玩数据
博客园
首页
新随笔
新文章
联系
订阅
管理
2020年4月25日
python 基础复习梳理---待续
摘要: 一 python基础 课件1:基础语法# 设置全部行输出from IPython.core.interactiveshell import InteractiveShellInteractiveShell.ast_node_interactivity = "all" #打印:print("")tip
阅读全文
posted @ 2020-04-25 23:43 二豆玩数据
阅读(151)
评论(0)
推荐(0)
2019年12月24日
python 中 len()和range()
摘要: https://blog.csdn.net/qq_36357820/article/details/77850841
阅读全文
posted @ 2019-12-24 15:37 二豆玩数据
阅读(497)
评论(0)
推荐(0)
2019年12月23日
case when使用的总结
摘要: https://blog.csdn.net/changxiangyangy/article/details/86718551 前几天,为了给产品分析当前用户数据结构,写sql的时候使用到了case when,今天来总结一下case when 的使用方法,以此为戒,感觉写的不好请拍砖,感觉写的还可以,
阅读全文
posted @ 2019-12-23 16:41 二豆玩数据
阅读(1389)
评论(0)
推荐(0)
2019年11月17日
77th ploty 制图神器
摘要: https://blog.csdn.net/u012897374/article/details/77857980
阅读全文
posted @ 2019-11-17 13:13 二豆玩数据
阅读(100)
评论(0)
推荐(0)
2019年11月16日
76th 学习聚类算法--kmeans--
摘要: 开始读书:数据挖掘大论
阅读全文
posted @ 2019-11-16 15:27 二豆玩数据
阅读(104)
评论(0)
推荐(0)
2019年11月14日
74th Jupyter Notebook 插入图片的方法
摘要: 转载: https://account.cnblogs.com/signin?ReturnUrl=http%3A%2F%2Fhome.cnblogs.com%2Fu%2Ferdou%2F 插入本地图片 使用 <img src> 语句插入本地图片,其中src为图片路径,可以是相对路径或绝对路径。 <i
阅读全文
posted @ 2019-11-14 15:05 二豆玩数据
阅读(251)
评论(0)
推荐(0)
2019年10月30日
59th python下graphviz安装 砖
摘要: 原文 摘录 感谢分享: https://www.cnblogs.com/liusx0303/p/9155305.html 参考链接:https://blog.csdn.net/u013250416/article/details/72790754 1.安装Graphviz 在graphviz的官网(
阅读全文
posted @ 2019-10-30 23:02 二豆玩数据
阅读(159)
评论(0)
推荐(0)
2019年10月28日
57th
摘要: 机器语言 第一天
阅读全文
posted @ 2019-10-28 22:15 二豆玩数据
阅读(75)
评论(0)
推荐(0)
2019年10月19日
48th Numpy 常见数组
摘要: 1.全0数组 np.zeros(shape, dtype=float, order='C') 指定长度的一维数组 >>> np.zeros(5) array([ 0., 0., 0., 0., 0.]) 二维数组 >>> np.zeros((2, 1)) array([[ 0.], [ 0.]])
阅读全文
posted @ 2019-10-19 23:58 二豆玩数据
阅读(107)
评论(0)
推荐(0)
2019年10月13日
42th-2
摘要: ''' 1, 元祖(2,3)'''def summ2(self, *args): '''这是一个求一系列数平方和的函数''' s = 0 for i in args: #历遍元祖 args=(2,3) s += i**2 print(s) summ2(1, 2, 3) out: 13
阅读全文
posted @ 2019-10-13 21:59 二豆玩数据
阅读(80)
评论(0)
推荐(0)
下一页
点击右上角即可分享