hello. I'm a student that work on R.(version 1.7.0) I need to some data frames such as "possum","Beams"'"kiwishade","dolphins",... . I typed help.search("possum") and so on,but the response was "No help files found with alias or title matching 'possum' using fuzzy matching.". I dont know what is "fuzzy matching" and I didn't find it in google search. please help me to find these data frames very very directly.
Fuzzy Matching Identifying Words with Similar Spelling Why you believe that the data.frames you mentioned are in R-Project or any package - any literature?>data(package = .packages(all.available = TRUE))But it seems, that it works only for installed packages. regards,christian ----- Original Message ----- From: "dg gdf" <hp3000al at yahoo.com> To: <R-help at stat.math.ethz.ch> Sent: Saturday, July 19, 2003 7:51 AM Subject: [R] I don't find "fuzzy matching"> hello. > I'm a student that work on R.(version 1.7.0) > I need to some data frames such as > "possum","Beams"'"kiwishade","dolphins",... . > I typed help.search("possum") and so on,but the > response was "No help files found with alias or title > matching 'possum' using fuzzy matching.". > I dont know what is "fuzzy matching" and I didn't find > it in google search. > please help me to find these data frames very very > directly. > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://www.stat.math.ethz.ch/mailman/listinfo/r-help
I think the datasets you're talking about can be downloaded at http://wwwmaths.anu.edu.au/~johnm/r/dsets/ put these in your working directory and type (in R), e.g.> source("dolphins.R")You can see you have the data now by typing:> dolphinswt heart logweight logheart species 1 35 245 3.555348 5.501258 styx 2 42 255 3.737670 5.541264 styx 3 71 525 4.262680 6.263398 styx 4 65 425 4.174387 6.052089 styx 5 63 425 4.143135 6.052089 styx 6 64 440 4.158883 6.086775 styx 7 45 350 3.806662 5.857933 styx 8 54 300 3.988984 5.703782 delph 9 59 350 4.077537 5.857933 delph 10 50 320 3.912023 5.768321 delph 11 42 240 3.737670 5.480639 delph 12 55 305 4.007333 5.720312 delph 13 37 220 3.610918 5.393628 delph 14 47 310 3.850148 5.736572 delph 15 40 210 3.688879 5.347108 delph 16 52 350 3.951244 5.857933 delph HTH, Tobias