Question

Use one of R’s datasets(trees). Using descriptive statistics, visualize this data numerically and graphically. You can...

  • Use one of R’s datasets(trees). Using descriptive statistics, visualize this data numerically and graphically. You can use the following resource as a guide: Section 2.5 (p. 15) and 3.5 (P. 25) from “Using R for Data Analysis and Graphics ”.

  • Make sure to look into:
    a) the summary of the data,

  • b) display it in the histogram,

  • c) boxplot,
    d) qqnorm
    e) other plots and functions.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

data("trees")
#a
summary(data)
#b
hist(trees$Girth)
hist(trees$Height)
hist(trees$Volume)
#c
boxplot(trees$Girth)
boxplot(trees$Height)
boxplot(trees$Volume)
#d


qqnorm(trees$Girth)
qqnorm(trees$Height)
qqnorm(trees$Volume)

Just run these codes you will get several graphs

Add a comment
Know the answer?
Add Answer to:
Use one of R’s datasets(trees). Using descriptive statistics, visualize this data numerically and graphically. You can...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT