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
Answer:
maximum is 16,853 cell phones
≤ 18.853
Step-by-step explanation:
1,176,912.42. per quarter budget
247,638.00 per quarter fixed cost
We subtract then divide the amount cost of phones and ensure its less or rounded down.
1,176,912.42 -247,638 = 929274.42
929274.42 / 55.14 = 16853
16,852 < m ≤ 16,853
Answer:
10n -11 =3 + 4n + 6n
10n - 10n -11 =3-3 + 4n + 6n
-11 - 3 = -10n + 4n + 6n
-14= -10n + 10n
-14 = n
Step-by-step explanation:
10n -11 =3 + 4n + 6n
10n - 10n -11 =3-3 + 4n + 6n
-11 - 3 = -10n + 4n + 6n
-14= -10n + 10n
-14 = n
Answer:
the answer is c=−1/20x+7/4
Step-by-step explanation: