1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Gemiola [76]
3 years ago
6

R Problem Old Faithful is a geyser located in Yellowstone Nation Park in Wyoming. It received the name "Old Faithful" by the Was

hburn-Langford-Doane expedition, who noted that the geyser seemed to erupt at regular intervals. In this problem, we will use data collected by park rangers to analyze whether the eruptions are as regular as originally thought. If you feel so inclined, you can watch Old Faithful in real time at the National Park Service website. The dataset is available on Canvas and has 2 columns and 272 rows. Observations are organized by row - the first column gives the length of the eruption (in minutes), while the second columin gives the waiting time (in minutes) since the previous eruption...Use the R function read.table to import the data set. If you don't know how it works, use help(read.table) to check the usage.
Mathematics
1 answer:
Tpy6a [65]3 years ago
8 0

Answer:

Step-by-step explanation:

The first 6 rows of the eruptions data :

eruptions waiting

1 3.600 79

2 1.800 54

3 3.333 74

4 2.283 62

5 4.533 85

6 2.883 55

R code :

1. You can directly access the "Faithful" data in R without importing the data. The dataset faithful is present in the R or you can load the datasets. or use install the datasets.load. package

If you have the data in a text file, make sure all the columns and rows are separated by commas

Step 1: open notepad

Step 2: enter data with no spaces but only commas

Step 3: save the file as ‘faithful.txt’ on your Desktop

# Get R help

?read.table

# Import the data

rain<-read.table("C:/Users/YOUR-NAME/Desktop/faithful.txt", header = TRUE,

                  sep = ",")

Check the data

data("faithful") #Loading Faithful data

head(faithful, 6) #Reading first 6 rows of the data

You might be interested in
D what was the original size of the wound explain
RideAnS [48]
--------------------------

6 0
3 years ago
Identify the variable, coefficient, and
puteri [66]

Answer: i dont understand what the question is saying but the answer is 2

Step-by-step explanation:

6 0
3 years ago
I need to factor ab-2b+ac-2c
xeze [42]
The answer is (a-2)(b+c)


8 0
3 years ago
Read 2 more answers
Simplify this expression 3x+6x
Ierofanga [76]
Since both 3x and 6x have the variable x in it, we can just go ahead and add 3 and 6.

3x+6x=9x
4 0
3 years ago
Read 2 more answers
HELPPPpppppppp pleaseeeeeeeeeeeeeeeeeeeee
allsm [11]

Answer:

use the app called photomath

4 0
3 years ago
Read 2 more answers
Other questions:
  • An airplane takes off at 12 1/2 miles south of a city and flies due north at a constant speed of 170 mph. What is the planes pos
    5·1 answer
  • Someone please help me
    10·1 answer
  • What is the maximum value of P = 24x + 30y, given the constraints on x and y listed below? x+y (less than or equal to) 5 x-y (gr
    5·1 answer
  • Simplify (4x+1)(3+9x)
    5·2 answers
  • What does m/4=6/5 equal in decimal
    15·1 answer
  • 1.) Explain how u can use absolute value to tell whether the sum of two integers is positive or negative?
    8·2 answers
  • I thought I had the right answer but apparently I don't. Help would be greatly appreciated. Thank you!
    14·1 answer
  • A newsletter publisher believes that less than 49% of their readers own a laptop. For marketing purposes, a potential advertiser
    5·1 answer
  • Add the polynomials (4x + 3)+(2x+7)<br> pls hurry
    7·2 answers
  • Points A, B and C make the triangle triangle ABC and are at the coordinates A(- 4, 3) , B(- 48, 17) and C(22, - 53) . Point D is
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!