I have a dataframe
a = c("A","B","C")
b = c(12,13,14)
c = ("Great","OK","Bad")
df = data.frame(a,b,c)
I want to print out every row with all the columns Expected output:
A is 12 mins and it is Great
B is 13 mins and it is OK
C is 14 mins and it is Bad
I tried to use cat
or paste0
but it does not work as what I want.