Sandbox: diferència entre les revisions

De wikiTraba
Salta a la navegació Salta a la cerca
Cap resum de modificació
Cap resum de modificació
Línia 23: Línia 23:


<math>\int_{-N}^{N} e^x\, dx</math>
<math>\int_{-N}^{N} e^x\, dx</math>
<googlemap version="0.9" lat="47.616116" lon="-122.345467" zoom="13">
(A) 47.625458, -122.347497
[http://www.hamptoninnseattle.com/ Hampton Inn]
(B) 47.624579, -122.356687
[http://www.marqueen.com/ MarQueen]
(C) 47.608536, -122.338327
[http://www.pioneersquare.com/ Best Western]
(D) 47.630492, -122.347082
[http://www.comfortsuites-seattle.com/ Comfort Suites]
</googlemap>

Revisió del 08:45, 12 ago 2011

Probando

<R output="html" iframe="width:100%;height:250px;"> prob=0.15; nmin=1; nmax=15; x=6 m <-pbinom(rep(0:x, each = nmax-nmin+1), rep(nmin:nmax,x), prob) dim(m) <- c(nmax-nmin+1,x+1) m <- t(m) colnames(m) <- format(nmin:nmax) rownames(m) <- format(0:x) outHTML(rhtml, m, title="x\n", format="f", digits=4) </R>

<R output="display" iframe="width:400px;height:400px"> pdf(rpdf, width=5, height=5) n <- 10 prob <- 0.2 x <- seq(0, n, 1) p <- dbinom(x, n, prob) param <- list(n, prob) main <- c("Binomialverteilung - Wahrscheinlichkeitsfunktion", paste (c("Stichprobenumfang n", "Wahrscheinlichkeit p"), param, sep="=")) plot(x,p, type="h", main=main) </R>