You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ht<- htable(mtcars)
# these would all work and do the same thing:ht$row_bold(nrow(mtcars))
ht$row_bold(-1)
ht$row_bold(nrow(mtcars) -1) # select second to last rowht$row_bold(-2)
Should the same work for columns?