i have a df as below: where there are 2 columns, student names and marks.
Stud_name Marks
Jon 25
john 20
ajay 50
ram 27
jay 61
jess 46
troy 23
mike 42
steve 45
glenn 43
i want few name and their marks.
expected output:
Stud_name Marks
john 20
ajay 50
jess 46
troy 23
ram 27
glenn 43
please help.
i tried:
pd <- filter(df,Stud_name == "john" , "ajay" , "jess")
Error in filter_impl(.df, quo) :
Evaluation error: operations are possible only for numeric, logical or
complex types.