Question

Scatterplots in .R Generate a scatterplot: Load the storms data.frame contained in the tidyverse package, and...

Scatterplots in .R

Generate a scatterplot:

Load the storms data.frame contained in the tidyverse package, and Produce a scatterplot to explore the relationship between wind speed and storm pressure. Hint: make sure that each storm status is plotted in a different color.

library(ggplot2)
library(tidyverse)
data(storms)
head(storms)
## # A tibble: 6 x 13
##   name   year month   day  hour   lat  long status category  wind pressure
##   <chr> <dbl> <dbl> <int> <dbl> <dbl> <dbl> <chr>  <ord>    <int>    <int>
## 1 Amy    1975     6    27     0  27.5 -79   tropi~ -1          25     1013
## 2 Amy    1975     6    27     6  28.5 -79   tropi~ -1          25     1013
## 3 Amy    1975     6    27    12  29.5 -79   tropi~ -1          25     1013
## 4 Amy    1975     6    27    18  30.5 -79   tropi~ -1          25     1013
## 5 Amy    1975     6    28     0  31.5 -78.8 tropi~ -1          25     1012
## 6 Amy    1975     6    28     6  32.4 -78.7 tropi~ -1          25     1012
## # ... with 2 more variables: ts_diameter <dbl>, hu_diameter <dbl>

Once scatterplot has been generated please answer questions

Which description most accurately reflects the relationship between wind speed and storm pressure?

A. Weak, positive, liner
B. Weak, negative, non-linear
C. Strong, positive, non-linear
D. Strong, negative, linear

Which range contains the minimum pressure for tropical depressions in the storms data.frame?

A. 940-960
B. 961-980
C. 981-1,000
D. 1,001-1,020
E. 1,021+

Which range contains the maximum wind speed for tropical storms in the storms data.frame?

A. 0-40
B. 41-80
C. 81-120
D. 121-160
E. 161+

Based on your fitted trend lines, which storm category appears to have a linear relationships between wind speed and pressure?

A. Hurricane
B. Tropical depression
C. Tropical storm

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

Which description most accurately reflects the relationship between wind speed and stormpressure?

A. Weak, positive, liner

Which range contains the minimum pressure for tropical depressions in the storms data.frame?

D. 1,001-1,020

Which range contains the maximum wind speed for tropical storms in the storms data.frame?

E. 161+

Based on your fitted trend lines, which storm category appears to have a linear relationships between wind speed and pressure?

C. Tropical storm

Add a comment
Know the answer?
Add Answer to:
Scatterplots in .R Generate a scatterplot: Load the storms data.frame contained in the tidyverse package, and...
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
  • Write in JAVA Get Familiar with the Problem Carefully read the program description and look at...

    Write in JAVA Get Familiar with the Problem Carefully read the program description and look at the data file to gain an understanding of what is to be done. Make sure you are clear on what is to be calculated and how. That is, study the file and program description and ponder! Think! The Storm Class Type Now concentrate on the Storm class that we define to hold the summary information for one storm. First, look at the definition of...

  • Please help we are suppose to explain what the C code does. This is the electronics database (6 pts) This problem is...

    Please help we are suppose to explain what the C code does. This is the electronics database (6 pts) This problem is based on Electronics database. Add some annotations to the following table to explain what the C program is doing in detail. Note that "void" is how C declares a function that does not return anything. You are expected to generalize or research svntaxes not mentioned in the lecture C Program Annotation void newPCproduct EXEC SQL BEGIN DECLARE SECTION;...

  • Using Merge Sort: (In Java) (Please screenshot or copy your output file in the answer) In...

    Using Merge Sort: (In Java) (Please screenshot or copy your output file in the answer) In this project, we combine the concepts of Recursion and Merge Sorting. Please note that the focus of this project is on Merging and don't forget the following constraint: Programming Steps: 1) Create a class called Art that implements Comparable interface. 2) Read part of the file and use Merge Sort to sort the array of Art and then write them to a file. 3)...

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