[1] "Original dataframe:"
name score attempts qualify
1 Anastasia 12.5 1 yes
2 Dima 9.0 NA no
3 Katherine 16.5 2 yes
4 James 12.0 NA no
5 Emily 9.0 2 no
6 Michael 20.0 NA yes
7 Matthew 14.5 1 yes
8 Laura 13.5 NA no
9 Kevin 8.0 2 no
10 Jonas 19.0 1 yes
[1] "Change column-name 'name' to 'student_name' of the said dataframe:"
student_name score attempts qualify
1 Anastasia 12.5 1 yes
2 Dima 9.0 NA no
3 Katherine 16.5 2 yes
4 James 12.0 NA no
5 Emily 9.0 2 no
6 Michael 20.0 NA yes
7 Matthew 14.5 1 yes
8 Laura 13.5 NA no
9 Kevin 8.0 2 no
10 Jonas 19.0 1 yes
Sample Output:
[1] "Original dataframe:" name score attempts qualify 1 Anastasia 12.5 1 yes 2 Dima 9.0 NA no 3 Katherine 16.5 2 yes 4 James 12.0 NA no 5 Emily 9.0 2 no 6 Michael 20.0 NA yes 7 Matthew 14.5 1 yes 8 Laura 13.5 NA no 9 Kevin 8.0 2 no 10 Jonas 19.0 1 yes [1] "Change column-name 'name' to 'student_name' of the said dataframe:" student_name score attempts qualify 1 Anastasia 12.5 1 yes 2 Dima 9.0 NA no 3 Katherine 16.5 2 yes 4 James 12.0 NA no 5 Emily 9.0 2 no 6 Michael 20.0 NA yes 7 Matthew 14.5 1 yes 8 Laura 13.5 NA no 9 Kevin 8.0 2 no 10 Jonas 19.0 1 yesneed an explanation for this answer? contact us directly to get an explanation for this answer