[R] About available datasets on PC

2010-11-23 Thread Stephen Liu
Hi folks, Win7 On running; data(package = .packages(all.available = TRUE)) it displays a list of datasets under:- Data sets in package ‘AER’: But I couldn't call/load all of them on the list. DJFranses Error: object 'DJFranses' not found CreditCard Error: object 'CreditCard' not found

Re: [R] About available datasets on PC

2010-11-23 Thread Jeff Newmiller
You need to load the package and then load the data: library(AER) data(DJFranses) then it will be available for you to work with. Stephen Liu wrote: Hi folks, Win7 On running; data(package = .packages(all.available = TRUE)) it displays a list of datasets under:- Data sets in package

Re: [R] About available datasets on PC

2010-11-23 Thread Stephen Liu
Hi Jeff, Tks for your advice. I got it B.R. satimis - Original Message From: Jeff Newmiller jdnew...@dcn.davis.ca.us To: Stephen Liu sati...@yahoo.com Cc: r-help@r-project.org Sent: Tue, November 23, 2010 4:41:57 PM Subject: Re: [R] About available datasets on PC You need to load