본문 바로가기
카테고리 없음

MATH1280 Statistics 1 Written assignment UNIT2

by 하나는외계인 2022. 8. 14.
반응형

MATH1280 Statistics1 Written assignment UNIT2 

Grade 90/0-90

 

 

Quizzes and graded assignments in MATH1280 are NOT group projects. Please answer the questions and do not share the questions or answers with others or accept advance access to questions or answers from others.

The file "flowers.csv" file contains information on measurements of the iris flowers. Create an R data frame by the name "flower.data" that contains the data in the file.

The following R code shows an example of how to round a vector of numbers to zero decimal places and then calculate some statistics using the rounded numbers.  You might need some of the calculations for this assignment, but you might not need others. You would replace example$years with the name of the R object that you want to analyze (in other programming languages, you might call example$years a variable).  

> x <- round(example$years, 0)
> freq <- table(x)
> rel.freq <- freq/sum(freq)
> cumsum(rel.freq)

Cumulative Frequency Table for Petal Length

Use the following table to answer tasks 2-4.

Value: 1 2 3 4 5 6 7
Cumulative Relative Frequency: .16 .33 .35 .58 .81 .97 1.00

Tasks

1. Sometimes it is difficult to understand data if you do not know what the numbers represent. Provide short definitions of two words: sepal, and petal (be sure to cite your sources even if you paraphrase):

sepal:_____________________

petal:_____________________

2. There is a cumulative relative frequency table printed above for petal lengths (using rounded values for petal length).  Below the number 3 in that table is the number .35.  What does .35 represent? (multiple choice)

a. Three of the flowers had petal length of 0.35.
b. There were 0.35 observations that had petal length of 3 (after rounding the petal lengths).
c. Of all the flowers measured in this sample 35% had a petal length of 3 (after rounding the petal lengths).
d. Of all the flowers measured in this sample 35% had a petal length of 3 or less (after rounding the petal lengths).
e. A study of all flowers on the planet would show that about 35% had petal lengths of 3 or less (after rounding the petal lengths).

3. Using only the cumulative relative frequency table printed above combined with some simple paper-and-pencil calculations, which petal length occurs most frequently ?

4. Describe how you determined your answer to the previous question (describe the calculations that you used). Do not show R code for this task--it will not be counted as an answer.__________________

--------------------------------------------------------------------------------------------------------

5. Assuming that you read the flowers.csv file into an R object called flower.data, run the following R code (do not paste the ">” character into R) and paste both the command and the output into your answer (you should see five names, each of which should be enclosed in quotes--if you do not see this, try again or contact your instructor):

> names(flower.data)

6. The number of observations in the "flower.data" data frame is: ____.

7. List the variables in the data frame (you can do this by entering the name of the R object that holds that data that you read using the read.csv command--you should have called it flower.data).  If you do not see five columns of data, then there was a problem reading the input file--try again or contact your instructor.  For each variable identify the type of the variable (factor or numeric).
    The name and type of the 1st variable:________________
    The name and type of the 2nd variable:________________
    The name and type of the 3nd variable:________________
    The name and type of the 4nd variable:________________
    The name and type of the 5nd variable: ________________

8. Round the data for the variable Sepal.Length so that it contains integers, then find the frequency of the value 7 (not the relative frequency): ____.

-----------------------------------------------------------------------------------------------------------

Assuming that you read the flowers.csv file into an R object called flower.data, run the following R code (do not paste the ">” character into R).  Note that we are not rounding the numbers here. Use the output for the next five tasks:

> table(flower.data$Sepal.Width)
> plot(table(flower.data$Sepal.Width))

9. What is the sum of the first three frequencies in the frequency table for sepal width? _____ 

10. What does your answer to the previous question represent (in terms of sepal width and frequency and the percentage of all sepal measurements) ____

11. What is the sum of the last three frequencies in the frequency table for sepal width? _____ 

12. How many flowers in the sample had sepal widths less than 4 (do NOT round the sepal width numbers for this, but you can round your final answer to 3 decimal places)? _________

13. What does the tallest bar in the plot represent?  (multiple choice)

a. mean
b. mode
c. median

----------------------------------------------------------------------------------------------------------

14. Create a frequency table that shows the frequencies for each species of flower in the sample.  Paste your R command and output into your answer (do NOT display data from a data frame, display data using the table() command)_________

15. Explain two things about the table that you created for the previous task:

Why did the frequency table for flower species contain words in the first row as opposed to numbers?______
What is the meaning of the numbers in the second row of the table? ___________________

 

 

-----------------------------------------------------

 

 

1. Sometimes it is difficult to understand data if you do not know what the numbers represent. Provide short definitions of two words: sepal, and petal (be sure to cite your sources even if you paraphrase):

"Sepals are the green color, leaf-like structures that form the outermost whorl" (Lakna, 2019, para.1). "Petals are the bright-colored petaloid structures which form the inner whorl" (Lakna, 2019, para.1).

 

2. There is a cumulative relative frequency table printed above for petal lengths (using rounded values for petal length).  Below the number 3 in that table is the number .35.  What does .35 represent? (multiple choice)

d. Of all the flowers measured in this sample 35% had a petal length of 3 or less (after rounding the petal lengths).

 

3. Using only the cumulative relative frequency table printed above combined with some simple paper-and-pencil calculations, which petal length occurs most frequently?

4 and 5

 

4. Describe how you determined your answer to the previous question (describe the calculations that you used). Do not show R code for this task--it will not be counted as an answer.

0.33-0.16=0.17

0.35-0.33=0.02

0.58-0.35=0.23

0.81-0.58=0.23

0.97-0.58=0.16

1-0.97=0.03

Petal length of 4 and of 5 occurs most frequently.

 

5. Assuming that you read the flowers.csv file into an R object called flower.data, run the following R code (do not paste the ">” character into R) and paste both the command and the output into your answer (you should see five names, each of which should be enclosed in quotes--if you do not see this, try again or contact your instructor):

Sepal.length, Sepal.Width, Petal.Length, Petal.Width and Species

 

6. The number of observations in the "flower.data" data frame is: ____.

150.

 

7. List the variables in the data frame (you can do this by entering the name of the R object that holds that data that you read using the read.csv command--you should have called it flower.data).  If you do not see five columns of data, then there was a problem reading the input file--try again or contact your instructor.  For each variable identify the type of the variable (factor or numeric).

Sepal.Length = numeric

Sepal.Width = numeric

Petal.Length = numeric

Petal.Width = numeric

Species = factor

 

8. Round the data for the variable Sepal.Length so that it contains integers, then find the frequency of the value 7 (not the relative frequency): 

24.

 

9. What is the sum of the first three frequencies in the frequency table for sepal width? _____ 

A. 8

1+3+4=8

 

10. What does your answer to the previous question represent (in terms of sepal width and frequency and the percentage of all sepal measurements) ____

My answer for question 9 represents the cumulative frequency of all sepal widths in the sample that is 2.3 or less.

 

11. What is the sum of the last three frequencies in the frequency table for sepal width? _____ 

A. 3

1+1+1=3

 

12. How many flowers in the sample had sepal widths less than 4 (do NOT round the sepal width numbers for this, but you can round your final answer to 3 decimal places)? _________

A. 146 

1+3+4+3+8+5+9+14+10+26+11+13+6+12+6+12+6+4+3+6+2=146

 

13. What does the tallest bar in the plot represent?  (multiple choice)

b. mode

 

14. Create a frequency table that shows the frequencies for each species of flower in the sample.  Paste your R command and output into your answer (do NOT display data from a data frame, display data using the table() command)_________

> table(flower.data$Species)    

setosa = 50

versicolor = 50

virginica = 50

 

15. Explain two things about the table that you created for the previous task:

Why did the frequency table for flower species contain words in the first row as opposed to numbers?______ Because it is a factor or a qualitative variable.

What is the meaning of the numbers in the second row of the table? ___________________ Frequencies of the data.

 

References

Lakna. (2019). What is the difference between sepals and petals. Pediaa.Com. Retrieved from https://pediaa.com/what-is-the-difference-between-sepals-and-petals/ 

 

 

 

반응형

댓글