Question

Using dyplr for R: Create data frame where each student is represented once. Example of what...

Using dyplr for R:

Create data frame where each student is represented once.

Example of what I have:

student test score
1 1 4
1 2 5
1 3 6

What it should look like:

Student score 1 score 2 score 3 score 4
1 4 5 6 8
2 1 5 6 8
3 4 3 6 9
4 2 3 4 5
0 0
Add a comment Improve this question Transcribed image text
Answer #1

Solution:

Student = c(1, 2, 3, 4)
score1 = c(4, 1, 4, 2)
score2 = c(5, 5, 3, 3)
score3 = c(6, 6, 6, 4)
score4 = c(8, 8, 9, 5)

Students = data.frame(Student, score1, score2, score3, score4)
print(Students)

Output:

Add a comment
Know the answer?
Add Answer to:
Using dyplr for R: Create data frame where each student is represented once. Example of what...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Language is C programming Student ID should be 8 numbers long. create a program to read...

    Language is C programming Student ID should be 8 numbers long. create a program to read your student ID number and store it in an array. Input can not be hard wired, I have to be able to input my number Then change the first number to a letter. If the same number repeats in other parts of your student ID, you must change that number to a letter as well. print original array and modified array as your output....

  • Using R, generate the code to convert the following data frame to wide format. 1 AF...

    Using R, generate the code to convert the following data frame to wide format. 1 AF 2 A M 3 BF 4 B M grp Sex neanl sd meanK sdlh 0.34 0.08 0.57 0.33 0.40 0.07 0.65 0.27 0.22 0.11 0.47 0.33 0.33 0.11 0.55 0.31 The result should look like the following display. grp F.meanL F.meanR F.sdL F.sdR M.meanL M.meanR M.sdL M.sdR 0.33 0.27 0.22 0.33 0.34 0.11 0.08 0.400.11 0.07 0.47 0.55 0.57 0.65 0.33 0.31 Hint: use...

  • Create a complete pseudo-code program in C++ to do the following using the PseudoCode language developed...

    Create a complete pseudo-code program in C++ to do the following using the PseudoCode language developed in class using Absolute Addressing. There is 1 deliverable: 1. You should include the input cards shown below as a test. THE PROGRAM: First you will read in a value N which holds the number of values to be read in. (so if N is 20 then there will be 20 more cards to read in.) Read in N values into an array. Bubble-Sort...

  • 3. [25 points] Here's another example of using dynamic programming over intervals (like we saw with...

    3. [25 points] Here's another example of using dynamic programming over intervals (like we saw with the RNA Secondary Structure problem) You're given an arithmetic expression consisting of positive integers separated by +s and s but without parentheses, and the goal is to determine the maximum possible value the expression could have by inserting parentheses in some way. For example, with 9-1+9-1 the max value is (9-1)(9-1) 16 (by the way, ((9-1)+9)-1 is an alternative parenthesization that achieves this value),...

  • 3.4.29 Compute the z-scores for all the shudents Complete the table r-score Student Student 1 Student...

    3.4.29 Compute the z-scores for all the shudents Complete the table r-score Student Student 1 Student 6 Shudent 7 Student 2 Student 9 Student 4 Student 5 (Round to the nearest hnredth as needed) Student 3 Student 4 6 5

  • c++ Instructions Overview In this programming challenge you will create a program to handle student test...

    c++ Instructions Overview In this programming challenge you will create a program to handle student test scores.  You will have three tasks to complete in this challenge. Instructions Task 1 Write a program that allocates an array large enough to hold 5 student test scores. Once all the scores are entered, the array should be passed to a function that sorts them in ascending order. Another function should be called that calculates the average score. The program should display the...

  • Key Takeaways -To create 2 groups of 4 students (8 students in total) -NEEDS random GPAs for each student -No arrays ---...

    Key Takeaways -To create 2 groups of 4 students (8 students in total) -NEEDS random GPAs for each student -No arrays ------------------------------------- app.java, student.java, and group.java as requested below. Please use the diagram above to help answer the Question: Create a project that: Has a student class Instance variables for Firstname, last name , and age random generated GPA methods to return getinfo and semesterGPA Build upon the solutions of the previous labs (e.g., using app.java and student.java) You will...

  • Python Help Create a program that outputs a table from 1 to 5 using what you've...

    Python Help Create a program that outputs a table from 1 to 5 using what you've learned about "for" loops. Your program will print the number and indicate if the number is odd or even. If it is not odd you will multiply 2 numbers with it: number 1 and number 2. Your program must do the multiplication for only even numbers in the table. The output of your program should look like the figure below. Hint: Create a program...

  • Does anybody know how to create a score of increase and decrease using javascript ? I...

    Does anybody know how to create a score of increase and decrease using javascript ? I will like to create a score system where If the user decides to not guess any number and just get what ever number that is given to them then there points is just what ever number comes up. For example: if the user just clicks on the no random button they just get what ever number comes up If the user wants to guess...

  •    I'm having problems with my pandas data frame. When I print my data frame, it...

       I'm having problems with my pandas data frame. When I print my data frame, it is appearing as one long column, instead of putting the data side by side as in the left image. I'm working with python. How do I fix this so that name, sex, and age appear side by side like in image on left? 0 1 2 3 4 Name Sex Age Alex М. 41 Bert М. 42 Carl M 32 Dave M 39 Elly...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT