Question: Write a program using R language to create the following data frame and call it practiceDF. Include your name in the first row, and then
- Write a program using R language to create the following data frame and call it practiceDF.
- Include your name in the first row, and then also include the following information.

- Create a second data frame from practiceDF by dropping the first two columns and call it practiceRes.
- Create a third data frame from practiceDF by dropping the following rows: 2, 4, 5, 8, and 9 and call the new data frame as practiceQual.
- Hints: Use subset() function to return a subset from the data frame. Search R Documentation to see how this function can be used to select vectors which meet certain conditions.
- Write a program using R language to convert temperature measurements from Fahrenheit, F, to Celsius, C, using the following equation:
- C=59(F32)
- Test your program using the following vector of Fahrenheit values: (45, 77, 19, 101, 120)
yes VOUAWN name score attempts qualify 1 Anastasia 12.5 1 Dima 9.0 no 3 Katherine 16.5 yes James 12.0 no Emily 9.0 no Michael 20.0 yes Matthew 14.5 yes Laura 13.5 no Kevin 8.0 no Jonas 19.0 1 yes MNMNMN 2. 10
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
