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
The volume of a cylinder is 32.25 cubic inches. If a cone has the same height and radius as the cylinder, what is its volume?
PtichkaEL [24]

The volume of a cylinder with a radius r and a height h:

V_1=\pi r^2h

The volume of a cone with a radius r and a height h:

V_2=\dfrac{1}{3}\pi r^2h

Therefore

V_2=\dfrac{1}{3}V_1

We have V_1=32.25\ in^3

Substitute:

V_2=\dfrac{1}{3}\cdot32.25=10.75\ in^3

Answer: The volume of a cone is equal 10.75 in³

8 0
3 years ago
Hi guys i don’t know what this really is but this is the equation 2x+2=7x+7 and it say = 90 at the end plz help
dolphi86 [110]

Answer

If it says = 90 at the end it means that's the answer.

4 0
3 years ago
The surface area of a cube that is 8 yards of width and length?
Umnica [9.8K]

Answer:

<h2>384 yd²</h2>

Step-by-step explanation:

The formula of a surface area of a cube:

SA = 6a^2

We have <em>a = 8 yd</em>.

Substitute:

SA=6(8^2)=6(64)=384\ yd^2

8 0
3 years ago
Incase you can’t read the questions it saids
Shtirlitz [24]

Answer:

Step-by-step explanation:

4 0
3 years ago
PLEASE HELP:
zlopas [31]

Answer:

x=3, y=4

Step-by-step explanation:

4 0
3 years ago
Read 2 more answers
Other questions:
  • Is this no solution or infinite solutions?<br> 2x+y=2 <br> y=-2x-1
    11·1 answer
  • How to solve? The answer needs to be rounded to the nearest tenth
    8·2 answers
  • Y = 2x – 1<br><br> Please help
    5·1 answer
  • Find the value of 5 ∙ 23.<br><br><br>30<br><br>40&lt;<br><br>1,000
    15·1 answer
  • Stir-fry is tony's favorite food to cook, but it always makes a lot of smoke! Tony needs to know the volume of his kitchen so he
    5·1 answer
  • Plz help its 7th grade distributive proprty
    15·2 answers
  • Plz Help 30 points:
    7·2 answers
  • I’ll give you brainliest if you help me pleasee
    5·2 answers
  • Pls help me will pay $
    7·1 answer
  • In a basketball game, Shawna made 8 baskets, each worth 3 points.
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!