Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
Data Frame Example - "cars"
What is the Data Frame Example, "cars"?
✍: FYIcenter.com
"cars" is a built-in data frame example in R environment.
"cars" has two columns: "speed" and "dist".
Each row records an instance of the stopping distance of
a car driving at a given speed.
Note that the data were recorded in the 1920s.
1. Basic info on "cars":
> cars speed dist 1 4 2 2 4 10 3 7 4 4 7 22 5 8 16 6 9 10 ... > typeof(cars) [1] "list" > dim(cars) [1] 50 2
2. Get some statistics on "cars":
> mean(cars[[1]]) [1] 15.4 > mean(cars[, "speed"]) [1] 15.4 > mean(cars[[2]]) [1] 42.98 > max(cars[[2]]) [1] 120 > max(cars[, "dist"]) [1] 120
2023-05-31, ∼1327🔥, 0💬
Popular Posts:
Why am I not seeing the "Call Forwarding" option on Skype for Business on Windows? You don't see the...
Why I am getting the "run or save ChromeSetup.exe" pop up box when trying to install Google Chrome 3...
Why am I getting the "Spawn Failed: Server at http://127.0.0.1:47353/u ser/fyicenter/didn't respond ...
Sometimes I see special symbols are showing up at the end of each paragraph in my Microsoft Word doc...
How to install Microsoft Teams desktop version on Windows 7? I am tired of using Microsoft Teams Web...