[R] Reading SPSS .por files

2008-07-18 Thread Jose Iparraguirre D';Elia
Does anyone know how to read SPSS .por (ie Portable) files? The foreign package only deals with SPSS .sav files and not with those with a "por" extension. Thanks, José Mr José Luis Iparraguirre D'Elia Senior Research Economist Economic Research Institute of Northern Ireland Floral Buildi

Re: [R] Reading SPSS .por files

2008-07-18 Thread Jose Iparraguirre D';Elia
8 To: Jose Iparraguirre D'Elia Cc: r-help@r-project.org Subject: Re: [R] Reading SPSS .por files On Fri, 18 Jul 2008, Jose Iparraguirre D'Elia wrote: > Does anyone know how to read SPSS .por (ie Portable) files? The foreign > package only deals with SPSS .sav files and not with those with

Re: [R] Reading SPSS .por files

2008-07-18 Thread Jose Iparraguirre D';Elia
José -Original Message- From: Prof Brian Ripley [mailto:[EMAIL PROTECTED] Sent: 18 July 2008 15:50 To: Jose Iparraguirre D'Elia Cc: r-help@r-project.org Subject: RE: [R] Reading SPSS .por files On Fri, 18 Jul 2008, Jose Iparraguirre D'Elia wrote: > Thanks Brian, > >

Re: [R] Reading SPSS .por files

2008-07-22 Thread Jose Iparraguirre D';Elia
Many thanks to you both, José -Original Message- From: Peter Dalgaard [mailto:[EMAIL PROTECTED] Sent: 18 July 2008 18:19 To: Jose Iparraguirre D'Elia Cc: Prof Brian Ripley; r-help@r-project.org Subject: Re: [R] Reading SPSS .por files Jose Iparraguirre D'Elia wrot

Re: [R] Kolmogorow-Smirnow-Test to check if Data comes from Subbotin distribution

2008-12-17 Thread Jose Iparraguirre D';Elia
Dear Sara, You could also use the Subbotools package by Giulio Bottazzi and test the goodness of fit of your data to this distribution. See: http://www.lem.sssup.it/WPLem/files/2004-14.pdf Also, http://cafim.sssup.it/~giulio/software/subbotools/install_cygwin.html Regards, José Mr José Luis

[R] Do not want to print when using prop.test

2009-01-20 Thread Jose Iparraguirre D';Elia
I am using the function prop.test (base package), which returns a list with class "htest". All I want to do is to assign one of its values to a variable, but I do not want R to print the results and added warning message whenever I invoke the function. How can I prevent R from printing on using

[R] A query about na.omit

2009-04-01 Thread Jose Iparraguirre D';Elia
Dear all, Say I have the following dataset: > DF x y z [1] 1 1 1 [2] 2 2 2 [3] 3 3NA [4] 4 NA 4 [5] NA 5 5 And I want to omit all the rows which have NA, but only in columns X and Y, so that I get: x y z 1 1 1 2 2 2 3 3 NA

Re: [R] A query about na.omit

2009-04-02 Thread Jose Iparraguirre D';Elia
Mark, Ted, Gabor, Thanks for all your input. José -Original Message- From: Gabor Grothendieck [mailto:ggrothendi...@gmail.com] Sent: 01 April 2009 18:12 To: Jose Iparraguirre D'Elia Cc: r-help@r-project.org Subject: Re: [R] A query about na.omit First input the data frame: &g

[R] Retrieving original data frame after repetition

2009-07-30 Thread Jose Iparraguirre D';Elia
Dear R users, Consider the first two columns of a data frame like this: > z[,1:2] x y 1 1 1 2 2 2 3 3 3 4 1 4 Imagine that y represents the times that the value x happens in a population. But z is not exactly a frequency table, because in z we have x=1 twice. So, the x=1 in the

Re: [R] Retrieving original data frame after repetition

2009-07-31 Thread Jose Iparraguirre D';Elia
ose -Original Message- From: Marc Schwartz [mailto:marc_schwa...@me.com] Sent: 30 July 2009 20:13 To: Jose Iparraguirre D'Elia Cc: r-help@r-project.org Subject: Re: [R] Retrieving original data frame after repetition On Jul 30, 2009, at 11:15 AM, Jose Iparraguirre D'Elia wrot