Hi!
I have a hard time finding a solution to the following problem.
Lets say I have the following data frame:
a <- c(1,2,3)
b <- c(4,5,6)
c <- c(7,8,9)
df <- cbind(a,b,c)
a b c
[1,] 1 4 7
[2,] 2 5 8
[3,] 3 6 9
But I want a "kable" output table that looks like this:
a b c
[1,] 1 4 7
[2,] 2 5 8
[3,] 3 6
How can I remove only one value, in my example only value 9, from the table that I export?
Any help appreciated!