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
Simplify the given algebraic expression.<br> 8(5y - 8) - (5y + 3)
RoseWind [281]

Answer:

35y - 67

Step-by-step explanation:

8(5y - 8) - (5y + 3)

Multiply the 8 with what is in the parentheses.

40y - 64 - 5y + 3

Subtract like terms.

35y - 67

7 0
3 years ago
Read 2 more answers
What is 6 plus 3 divided by two?
Aleks [24]

Answer: 7.5

Step-by-step explanation:

4 0
3 years ago
The perimeter of the triangle is 40 units.Which of the following equations could be used to find the value of x?
Artyom0805 [142]

Answer:

13x + 112 = 320.

Step-by-step explanation:

The perimeter is the sum of the 3 sides:

1/2 x + 3/8 x + 11 + 3/4 x + 3 = 40

1/2 x + 3/8 x  + 3/4 x + 3 + 11 = 40

1/2 x + 3/8 x  + 3/4 x + 14 = 40

Multiply through by 8 to remove the fractions:

4x + 3x + 6x  + 14 = 40

13x + 112 = 320.

5 0
3 years ago
In the accompanying diagram PA is tangent to circle 0 at A if CN=12 and PB=4 what is the length of PA?
bogdanovich [222]
576972840482626 is the email answer your welcome merry Christmas
4 0
3 years ago
20 men decided to complete a work in 30 days. but after 6 days 8 men left now in how many day the work will be completed​
Serga [27]

First, we convert it into a unit like this

20 workers × 30 days = 600 units work

After leaving the 5 workers, we have 35 days to complete the work.

In 35 days only 15 workers will do the work.

So the work completed in 35 days by 15 workers = 35 ×15 =525 units

Remaining unit = 600 -525 =75 units

This unit would do by 5 workers in (75/5) = 15 days.

So after 15 days, 5 workers should leave the job.

6 0
3 years ago
Other questions:
  • Can someone help me please ( picture below) :)
    13·1 answer
  • Pls help me 20 points
    14·1 answer
  • What is 9 less than a number?
    8·1 answer
  • Solve and check the following equation<br> -15=5(3q-10)-5q
    15·2 answers
  • Lucy spent $36 on fruit at the grocery store. She spent a total of $60 at the store. What percentage of the total did she spend
    10·2 answers
  • Tell whether the given value is a solution of the inequality. 5x-17&gt;62;x=13
    5·1 answer
  • The slope of a given line is shown below. Find the slope of a line parallel to the given line and the slope of a line perpendicu
    14·1 answer
  • PLEASE HELP ME OUT WITH METRIC CONVERSIONS!!!!!!
    5·2 answers
  • I need the work for it too.
    9·1 answer
  • Use Example 1 as a model to evaluate the limitlim n→∞ nf(ci)Δxii = 1over the region bounded by the graphs of the equations. (Rou
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!