search for: outsheet

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

Did you mean: outset
2007 Apr 24
1
Importing a CSV file
...d to me--R seems to be recognizing the data but not storing it. I didn't come across any mention of this in the "R Data Import/Export Manual", FAQs, prior questions that I thought addressed this issue. (If this info would help: The csv file was created from a Stata file using the outsheet command. When I tried to use library(foreign) to import the data directly from Stata, using: stata.data <- read.dta("niwage.dta") load("niwage.RData") I got the following: Error in readChar(con, 5) : cannot open the connection In addition: Warning message: cannot open c...
2002 May 16
1
foreign library - negative integers??
...AA 2004 0.000 0 -0.002 -414 0.002 -0.090 -0.338 4 1 AA 2005 0.000 0 0.000 -8 0.000 -0.036 -0.272 5 1 AA 2006 0.000 0 0.002 309 -0.001 -0.050 0.468 In theory, dd== d, but notice the differences in abs. The problem is that aptaa.csv is simply an "outsheet using" (in stata) version of aptaa.dta - and thus identical. I have checked these two files (numerous times.). (loading/reloading/rewriting in stata) It appears that the negative "abs" is a problem, but other variables are not suffering the same problem. (no other integer vari...
2009 Dec 16
1
Stata files
I have a client who uses Stata 11. Can anyone advise me on ways of transferring data from this version of Stata to R? Reading the documentation for read.dta in package foreign it seems it only allows for versions up to Stata 10. I don't know Stata at all but a bit of poking around on their website led me to believe Stata 11 couldn't write in Stata 10 format. However Stata 11 can
2009 May 08
2
Probit cluster-robust standard errors
If I wanted to fit a logit model and account for clustering of observations, I would do something like: library(Design) f <- lrm(Y1 ~ X1 + X2, x=TRUE, y=TRUE, data=d) g <- robcov(f, d$st.year) What would I do if I wanted to do the same thing with a probit model? ?robcov says the input model must come from the Design package, but the Design package appears not to do probit? Thanks very