It would be worth your time to read some introductory material on how to use R.
To look only at the variable of interest you can call on it in various ways. One would be to call it by name: Corp$ar_li_igp Another would be to call it by column index: Corp[15] #assuming ar_li_igp is the 15th column There are many other ways to look at your data that you need to discover yourself with the help of Google. A website that I relied on heavily when I first started was Quick-R. http://www.statmethods.net/ On Fri, Dec 7, 2012 at 3:25 PM, Faradj Koliev <[email protected]> wrote: > Dear R-users, > > I have a huge data with around 1000 variables, but i am only interested > in some of them. For example, i am interested in a variable "ar_li_igp" ( > interest group pluralist). However, i do not know how to look at it? What > command is suitable for this? > > > Corp<-read.spss("/Users/kama/Analysis/Corporation.sav",to.data.frame=T) > ( the oroginal file is a spss file) > > > Thank you > > > > Regards, > Faradj > [[alternative HTML version deleted]] > > _______________________________________________ > R-SIG-Mac mailing list > [email protected] > https://stat.ethz.ch/mailman/listinfo/r-sig-mac > [[alternative HTML version deleted]] _______________________________________________ R-SIG-Mac mailing list [email protected] https://stat.ethz.ch/mailman/listinfo/r-sig-mac
