- 博客(6)
- 收藏
- 关注
原创 链接 conda环境 到 jupyter notebook
nb_conda_kernels 是一个链接各个conda环境到jupyter notebook 的包,需要安装在base环境中。此外需要在各个环境中安装ipykernel。上图中的tensorflow1.1o-gpu 是通过其他方式链接到jupyter notebook 中的。上图是本机所有的conda环境上图是向tensorflow2.0-gpu环境安装 ipyke...
2020-04-25 21:30:52
431
转载 关于*[pylint]E1101:Module 'xxx' has no 'xxx' member* 简单而有效的解决办法
参考见:https://www.cnblogs.com/Ghost4C-QH/p/9488348.html
2019-10-07 18:09:31
502
原创 tapply函数--R语言
> attach(mtcars)> tapply(mpg,cyl,mean) 4 6 8 26.66364 19.74286 15.10000 由:> table(cyl)cyl 4 6 8 11 7 14 可以看出,tapple是以mpg按cyl来应用mean函数具体> mean(mpg[cyl==4])[1] 26.6636...
2018-03-28 08:03:16
16723
原创 绘制散点图--python
#-*- coding: utf-8 -*-import numpy as npfrom numpy import *import matplotlib.pyplot as plt#测试数据集 二维listdataSet = [ [-0.017612, 14.053064], [-1.395634, 4.662541], [-0.752157, 6.538620], [-1....
2018-03-22 14:59:03
1005
原创 离散均匀先验——R语言代码段
Introduction to Bayes using Discrete PriorsJim AlbertMay 28, 2014Learning About a ProportionA Discrete PriorConsider a population of “successes” and “failures” where the proportion of suc-cesses is p....
2018-03-13 13:56:03
682
原创 正态分布-R语言
dnorm(x, mean = 0, sd = 1, log = FALSE)pnorm(q, mean = 0, sd = 1, lower.tail = TRUE, log.p = FALSE)qnorm(p, mean = 0, sd = 1, lower.tail = TRUE, log.p = FALSE)rnorm(n, mean = 0, sd = 1)//-----
2017-11-29 22:06:53
16268
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人