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
This is a picture of a cube and the net for the cube.
morpeh [17]

Answer:

150cm2

Step-by-step explanation:

A=6a2, where a is the side of one face of the cube. Given a=5cm

A=6(5cm)^2

=6×25cm^2

=150cm^2 or 150cm2

3 0
3 years ago
Read 2 more answers
One student from the school will be selected at random. What is the probability the selected student chose the art elective and
Black_prince [1.1K]

Answer:

0

Step-by-step explanation:

The students are only allowed to take one slot for the elective. Therefore, there is a probability of zero that they would have chosen both art and music.

4 0
2 years ago
What’s the slope of this graph?? If good at math and positive with answer
dalvyx [7]

Answer:

based on the picture, the rise is 5 and the run is 3. This would make a slope of 5/3.

Step-by-step explanation:

7 0
3 years ago
Use green's theorem to evaluate the line integral along the given positively oriented curve. c yex dx 2ex dy, c is the rectangle
Phoenix [80]

The line integral along the given positively oriented curve  is  mathematically given as

=3\left[e^{4}-1\right]

This is further explained below.

<h3>What is the line integral along the given positively oriented curve.?</h3>

Generally,

\int M d x+N d y=\iint\left(\frac{\partial N}{\partial x}-\frac{\partial M}{2 y}\right) d y d x

M=y e^{x}

Therefore

x -->0 to 4

y --> 0 to 3

\end{aligned}\\&=\int_{0}^{4} \int_{0}^{3}\left(2 e^{x}-e^{x}\right) d y d x\\&=\int_{0}^{4} \int_{0}^{3} e^{x} d y d x\\&=3 \int_{0}^{4} e^{x} d x\\&=3\left[e^{x}\right]_{0}^{4}\\&=3\left[e^{4}-e^{0}\right]\\&=3\left[e^{4}-1\right]\end{aligned}  

In conclusion, the line integral along the given positively oriented curve.

=3\left[e^{4}-1\right]

Read more about line integral

brainly.com/question/15177673

#SPJ4

7 0
2 years ago
Find the volume of the triangular prism. Please explainnn
I am Lyosha [343]
I don’t know the answer but search up volume triangular prism and plug the numbers and that will give you the answer
3 0
3 years ago
Other questions:
  • Solve number problem 8
    7·2 answers
  • How would i calculate 1.9 minus 11/12?
    11·1 answer
  • What is the first step to solve this equation: -3x + 11 = 44?​
    10·2 answers
  • 8 percent of what number is 2
    11·1 answer
  • Every floor of a 20 storey building is 5m in high. If a lift moves 2m every second, how long will it take to move from 3rd floor
    11·1 answer
  • Help me pleaseeee I don’t know what to do!!
    10·1 answer
  • In the world’s coldest freezer, sodium gas was cooled to a temperature of 78.5°C below zero and then cooled 194.65°C more. What
    8·2 answers
  • Which set of ordered pairs represents y as a function of x? <br><br>​
    10·1 answer
  • PLEASE HELPP 6TH GRADE MATH!!
    14·1 answer
  • X^2 +14x +45=0 factorise​
    11·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!