search for: reinert

Displaying 4 results from an estimated 4 matches for "reinert".

Did you mean: reinsert
1999 May 28
1
3D-barplots
Dear R users How can I create 3D barplots in R. In Splus it is possible to create 3D barplots via graphical menus, but it would be nice to able to create 3D barplots via the command line in R. Any help/hints will be greatly appreciated. Regin Reinert -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at...
2018 Jan 16
0
Help
Hi I try ? Iramuteq ? and when I?ll like ? methode reinert ? I have this message Erreur R Loading required package: Matrix There were 50 or more warnings (use warnings() to see the first 50) There were 50 or more warnings (use warnings() to see the first 50) Error in Ntip + Nnode : non-numeric argument to binary operator Calls: plot.dendropr -> plot.p...
2000 Sep 20
1
SV: sample from contingency table
I have had the same problem and I wrote this function rmulti <- function(n, size, p) { NrDim <- length(p) if(NrDim<2) stop("The simulated variabel has to be at least 2-dimensional") res <- matrix(data=NA, nrow=n, ncol=NrDim) p <- p/sum(p) TempSize <- size for(i in 1:NrDim) { TempP <- p[i]/sum(p[i:NrDim]) TempBin <- rbinom(n=n, size=TempSize,
2000 Aug 29
0
SV: short way
This should do what you want: # construct a data.frame d L3 <- LETTERS[1:3] str(d <- data.frame(cbind(x=1, y=1:10), ch=sample(L3, 10, repl=TRUE))) d # replace y-value in d, where y=5 d$y[d$y==5] <- 100 d Regin -----Oprindelig meddelelse----- Fra: Pesl Thomas [mailto:thomas.pesl at arcs.ac.at] Sendt: 29. august 2000 14:02 Til: R-Help (E-Mail) Emne: [R] short way i want to replace