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
When a flash of lightning occurs, the number of seconds elapsed until thunder is heard can be used to approximate the distance f
inn [45]
Pretty sure its C :)
6 0
2 years ago
Read 2 more answers
Find the square root of 64a^2/9b^2+4+32a/3b​
insens350 [35]

Answer:

the square root of 64a^2/9b^2+4+32a/3b is

  • ( 8a + 6b ) / 3b

or

  • 8a / 3b + 2

8 0
3 years ago
Help please .. don’t understand
Grace [21]

Answer:

sinx = p/h , cosx = b/h , tanx = p/b

you can use these relations

Step-by-step explanation:

p = perpendicular = side opposite to the angle

h  = hypotenuse = side opposite to the right angle

b= base

if no angles are given, p and b can be interchanged

3 0
3 years ago
Read 2 more answers
Mrs. Nelson has a rectangular flower box that is 5 feet long and 2 feet tall. She wants the width of the box to no more than 5 f
d1i1m1o1n [39]
Volume = length x width x height.
if the width has to be a whole number no more than 5 then the only options for the width is 1, 2, 3, 4, or 5.
V=5x1x2
V=10
V=5x2x2
V=20
V=5x3x2
V=30
V=5x4x2
V=40
V=5x5x2
V=50
the possible volumes are as follows: 10, 20, 30, 40, and 50.
make sure in your answer that you label your volumes so you write ft^3 after every volume answer.

7 0
3 years ago
Write an expression to describe the sequence below. Use n to represent the position of a
MrRa [10]

Answer:

n+1=x-1

Step-by-step explanation:

as n goes up, x decreases by 1 each time

7 0
3 years ago
Other questions:
  • Which expressions represent a quadratic expression in factored form?
    7·1 answer
  • John checked his bank account and noticed that he had a balance of −$12.00. He immediately deposited $12.00 in his account. What
    9·2 answers
  • 3,200 g = __________kg​
    6·2 answers
  • Here is an addition sentence.
    15·2 answers
  • Pls help I will mark brainliest
    10·2 answers
  • Provide 2 examples/2 sets of factors.
    5·1 answer
  • Let's start! Take a look at all of these blocks. You can reach the number 10 by adding the blocks in many different ways. BUT, w
    13·1 answer
  • The ordered pairs in the table below represent a linear function.
    14·2 answers
  • Like what is this and how do you do it please explain clearly and understandable
    15·2 answers
  • What is 3 billion times 0.7
    7·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!