File:Binomial distribution cdf.svg
维基共享资源,媒体文件资料库
跳转到导航
跳转到搜索
此SVG文件的PNG预览的大小:640 × 480像素。 其他分辨率:320 × 240像素 | 1,024 × 768像素 | 1,280 × 960像素 | 2,560 × 1,920像素。
原始文件 (SVG文件,尺寸为640 × 480像素,文件大小:64 KB)
文件信息
结构化数据
说明
摘要
[编辑]描述Binomial distribution cdf.svg | Binomial distribution cumulative distribution function |
日期 | |
来源 | 自己的作品 |
作者 | Tayste |
SVG开发 InfoField | |
源代码 InfoField | R code# R source code for Wikipedia SVG plot of Binomial CDF
# by de:User:Sigbert, Feb 2010
require("RSvgDevice")
create.binomial.cdf <- function(N, p, colour="black", pch=16) {
n <- max(length(N),length(p),length(colour),length(pch))
N <- rep(N,length=n); p <- rep(p,length=n)
colour <- rep(colour,length=n); pch <- rep(pch,length=n)
add.one.series <- function(N, p, colour, pch, maxN) {
cdf <- pbinom(0:N, N, p)
# lines(0:N, cdf, type="s", col=colour)
for (i in 1:N) lines (c(i-1,i), c(cdf[i], cdf[i]), type="s", col=colour)
lines(c(N,maxN), c(1, 1), type="s", col=colour)
points(0:N, cdf, col=colour, pch=pch)
}
par(lwd=1.5, cex=1, mar=c(3.1,2.5,0.5,0.5))
plot(1, xlim=c(0,max(N)), ylim=c(0,1), type="n", xlab="", ylab="")
for (i in 1:n)
add.one.series(N[i],p[i],colour[i],pch[i], max(N))
text = paste("p=",rev(p)," and N=",rev(N),sep="")
legend(max(N), 0, legend=text, xjust=1, yjust=0,
pch=rev(pch), lwd=rep(par("lwd"),3), col=rev(colour), y.intersp=1.5, bty="n")
}
devSVG("Binomial_distribution_cdf.svg",width=4,height=3)
create.binomial.cdf(c(40,20,20), c(0.5,0.7,0.5), c("red","green","blue"), c(20,15,18))
dev.off()
|
许可协议
[编辑]Public domainPublic domainfalsefalse |
我,本作品著作权人,释出本作品至公有领域。这适用于全世界。 在一些国家这可能不合法;如果是这样的话,那么: 我无条件地授予任何人以任何目的使用本作品的权利,除非这些条件是法律规定所必需的。 |
文件历史
点击某个日期/时间查看对应时刻的文件。
日期/时间 | 缩略图 | 大小 | 用户 | 备注 | |
---|---|---|---|---|---|
当前 | 2010年5月13日 (四) 13:11 | 640 × 480(64 KB) | Meisterkoch(留言 | 贡献) | final fix | |
2010年5月13日 (四) 13:02 | 289 × 217(62 KB) | Meisterkoch(留言 | 贡献) | fix colours | ||
2010年5月13日 (四) 12:48 | 289 × 217(40 KB) | Meisterkoch(留言 | 贡献) | change colour coding | ||
2010年2月12日 (五) 18:07 | 1,052 × 744(56 KB) | Meisterkoch(留言 | 贡献) | format | ||
2010年2月12日 (五) 18:04 | 744 × 1,052(55 KB) | Meisterkoch(留言 | 贡献) | step function, updated R-code | ||
2008年3月1日 (六) 20:09 | 434 × 289(20 KB) | Tayste(留言 | 贡献) | {{Information |Description=Binomial distribution cdf |Source=self-made |Date=2 Mar 2008 |Author= Tayste |Permission= |other_versions= }} |
您不可以覆盖此文件。
文件用途
没有页面使用本文件。
全域文件用途
以下其他wiki使用此文件:
- ar.wikipedia.org上的用途
- ast.wikipedia.org上的用途
- be.wikipedia.org上的用途
- bn.wikipedia.org上的用途
- ca.wikipedia.org上的用途
- cs.wikipedia.org上的用途
- de.wikipedia.org上的用途
- en.wikipedia.org上的用途
- en.wikibooks.org上的用途
- es.wikipedia.org上的用途
- fa.wikipedia.org上的用途
- fi.wikipedia.org上的用途
- fr.wikipedia.org上的用途
- gl.wikipedia.org上的用途
- hi.wikipedia.org上的用途
- id.wikipedia.org上的用途
- it.wikipedia.org上的用途
- ja.wikipedia.org上的用途
- ko.wikipedia.org上的用途
- lv.wikipedia.org上的用途
- mk.wikipedia.org上的用途
- pl.wikipedia.org上的用途
- ru.wikipedia.org上的用途
- sq.wikipedia.org上的用途
- sr.wikipedia.org上的用途
- ta.wikipedia.org上的用途
- tl.wikipedia.org上的用途
- tr.wikipedia.org上的用途
- uk.wikipedia.org上的用途
- vi.wikipedia.org上的用途
- zh.wikipedia.org上的用途