Which Of The Following Sort A Dataframe By The Order Of The #626
Which of the following sort a dataframe by the order of the elements in B?
This multiple choice question (MCQ) is related to the book/course gs gs110 R Language. It can also be found in gs gs110 Commands, Packages, Visualizing Data and Linear Regression - Commands - Quiz No.1.
Which of the following sort a dataframe by the order of the elements in B?
x[rev(order(x$B)),]
x[ordersort(x$B),]
x[order(x$B),]
x[rev(x$B),]