Write the function names for
a) To concatenate two strings with syntax
b) To find out the minimum valued index number
c) To sort a particular column of a dataset
d) To check inbuilt datasets in r.
e) To check the data type of any variable.
Write the function names for a) To concatenate two strings with syntax b) To find out the minimum valued index …
Share
a) To concatenate two strings with syntax
sol:cat(st1, st2,sep = ‘ ‘)
b) To find out the minimum valued index number
sol:which.min(x)
c) To sort a particular column of a dataset
sol: arrange(dataframe,column)
d) To check inbuilt datasets in r.
sol:data()
e) To check the data type of any variable.
sol:typeof(x)