Skip to content
Prev 5678 / 7420 Next

How to include math symbols in a data frame

Thank you Ya?r.

Sorry about that.

Looking in an answer from stackoverflow for another type of problem, I
found this solution:

column1 <- c("a", "b", "c")
column2 <- c("\u2264 0.3", 0.5, 0.8)
column3 <- c("\u2264 0.5" , 0.6, 0.9)

table <- data.frame(column1, column2, column3)

kable(table)

2017-10-09 9:55 GMT-06:00 Levy, Ya?r <yair.levy at mow.vlaanderen.be>: