similar to: matrix with fix number columns but variable number rows

Displaying 20 results from an estimated 4000 matches similar to: "matrix with fix number columns but variable number rows"

2002 Mar 20
3
tex/latex output?
Is it possible to write the output/results (redirect) to a latex file? Jeff. Jeff D. Hamann Hamann, Donald & Associates, Inc. PO Box 1421 Corvallis, Oregon USA 97339-1421 Bus. 541-753-7333 Cell. 541-740-5988 jeff_hamann at hamanndonald.com www.hamanndonald.com -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read
2002 Sep 29
2
Problem on minima
2002 Feb 25
4
replace NAs
Dear R community: it is possible to replace NA?s in a data frame with zeroes? what should I do? Thanks in advance Juan Pablo _________________________________________________________________ MSN Photos es la manera m?s sencilla de compartir e imprimir sus fotos: http://photos.latam.msn.com/Support/WorldWide.aspx -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
2002 Mar 29
2
order()
Hi, In the order() help file, there is an example like: a <- c(4, 3, 2, NA, 1) b <- c(4, NA, 2, 7, 1) z <- cbind(a, b) (o <- order(a, b)); z[o, ] How can I do something like "order a in ascending order, b in descending order"? And say I have a third vector c, and I'd like to add this to the previous condition "a ascending, b descending, c
2002 Mar 18
4
Plot 3d
There exists a plot 3d functions (or similar) in R? Thanks, ======================================== Cezar Freitas (ICQ 109128967) IMECC - UNICAMP Campinas, SP - Brasil -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe"
2002 Aug 20
4
plot and bg
Hi all, I would like to plot some points and define the bg color of my graphics. But the bg parameter set is defined for the. whole graphic. In fact, i would like to use something like : box(bg=gray(0.9)). So, the background concerns only the plot region and not the main title, the x title and the y title. The option col for the function box() concerns the contour and there is no option
2002 Feb 11
4
Multiple graph pages
Dear R users: I am a relatively experienced Splus user but new to R, using the version for Windows 2000. Splus allows the user to generate multiple graph pages in the graph window. For example, if you have two plot(...) commands in the script than two pages in the graph window will be created. However, when I tried this in R, the second plot will just overwrite the first plot in the graph
2003 Jan 06
1
On nlm
Dear all, I have to minimize a (real) function in a loop (say i in (1:1000)) and store its ``$estimate'', via l2estim<-nlm(f.minimo,c(-.01,0.1))$estimate into a vector for further analisys. Since the function's behaviour is quite peculiar (in the sense that in the simulation study it may not have a minumum), sometimes I get the the warning Error in nlm(minimo, c(-0.01, 0.1),
2001 Nov 20
2
is match slow?
I'm doing m <- match(matriz, origen, 0) where matriz is a 270x900 matrix and origen a 11675 elements vector, and is taking a very long time. Is match a function implemented in C? If not, would a C code be faster? Thanks Agus Dr. Agustin Lobo Instituto de Ciencias de la Tierra (CSIC) Lluis Sole Sabaris s/n 08028 Barcelona SPAIN tel 34 93409 5410 fax 34 93411 0012 alobo at ija.csic.es
2005 Sep 23
2
Strange behaviour of as.Date function
Dear All, I'm happily extracting data of temperature from an oracle db under R via RODBC. After manipulating the extracted data I put them into a data.frame 'dati' which is as follows: > dati DATA tm. UDINE/RIVOLTO tm.TORINO/CASELLE 1 2005-07-01 22.35 23.80 2 2005-07-02 22.70 22.85 3 2005-07-03 23.80
2009 Sep 11
2
ovirt ace error
Good morning, I have succesfully buil ovirt on fedora 11 but running ace -d l /tmp/ace.log install ovirt I got en error (I think it is krb5 issue). My server was not a kerberos server before installing ovirt, so I think ace procedure has installed it. Attacchede here there is the ace.log file. Could anyone help me ? Thanks & Regards Ignazio -------------- next part -------------- A non-text
2007 Aug 23
6
mongrel + pound + ziya problems
Hi, i''m using to ziya to display some graph. If i use it running mongrel as single instance all work good (very slow but work). If i try to use it with pound as htto proxy ziya charts wait forever for data...that never arrive. If i check the mongrel log it seemes to make queries on the database and retrieve data,but nothin appera. Anyone have an idea on how i can solve this problem?
2006 May 04
0
R: R: [Re:] function to replace missing values with median value?]]
oops!, I pressed the 'send' key too soon, ... see ?replace replace(x, is.na(x), median(x, na.rm=T)) take also a look at the function itself > replace function (x, list, values) { x[list] <- values x } <environment: namespace:base> Stefano >-----Messaggio originale----- >Da: r-help-bounces at stat.math.ethz.ch >[mailto:r-help-bounces at
2012 Apr 25
2
GFI en modelos estructurales con lavaan
Se ha borrado un adjunto en formato HTML... URL: <https://stat.ethz.ch/pipermail/r-help-es/attachments/20120425/dafc9a68/attachment.html>
2007 Dec 27
1
Lda and Qda
Hi all, I'm working with some data: 54 variables and a column of classes, each observation as one of a possible seven different classes: > var.can3<-lda(x=dados[,c(1:28,30:54)],grouping=dados[,55],CV=TRUE) Warning message: In lda.default(x, grouping, ...) : variables are collinear > summary(var.can3) Length Class Mode class 30000 factor numeric ### why?? I
2013 Nov 15
2
Aplicación de lapply()
Estimados su ayuda con la ejecución del comando lapply() Tengo creada la siguiente función invertir(matriz,n) que me permite cambiar la posición de los elementos de una matriz. invertir<-function(Matriz,n){ a<-Matriz b<-matrix(c(rep(0,n*n)),n,n) c<-matrix(c(rep(0,n*n)),n,n) for (i in 1:n) {b[i,]<-a[(n+1)-i,]} for (j in 1:n) {c[,j]<-b[,(n+1)-j]} return(c) }
2006 Nov 16
6
Network card full virtualized windows
Good morning, I installed on xen a windows XP and a Windows 2003 domU. Windows operating system does not know the real network card but it setup up an AMD pcnet card 10mbps. Is it possible to setup a full virtualized domU with a real network card ? I installed also windows on a trial xen enterprise and real network card seeems to work fine. What differences between xen and xen entrprise as far
2020 Feb 10
2
Cannot allocate a vector of size...
Muchas gracias Xabier. He intentaddo trabajar con la sparse matrix pero al pasar tdm a matriz me dice también que "cannot allocate a vector of size 12 gb". He hecho tdm<-as.matrix(tdm) ¿Está bien hecho eso para trabajar con la sparse matrix? Gracias! El Lun, 10 de Febrero de 2020, 16:15, Xavier-Andoni Tibau Alberdi escribió: > La respuesta de Carlos creo que es mucho mas
2008 Dec 31
4
xen hvmloader gpxe
I am testing several Operating System Streaming products to streams virtual desktops. They always requires pxe boot but xen seems to have a pxe which is not suitable. I got the same problem with kqemu and kvm and I solved it using gpxe. With xen I tried to chainloading gpxe (following gpxe wiki) but hvmloader fails to load it (memory problem?). Any workaround
2020 Feb 10
2
Cannot allocate a vector of size...
Buenas, El archivo de R ocupa 33 megas. La matriz que quiero construir cupa 14 gb. En el disco local (C) tengo 400 gb disponibles de 670. No estoy muy puesta en trabajar con este tipo de datos. ¿Qué diferencia es trabajar con data.frame? Gracias! El Vie, 7 de Febrero de 2020, 18:07, Xavier-Andoni Tibau Alberdi escribió: > Depende de la operació que quieras hacer con la matriz. Si quitas filas