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
The rownames are incorrectly assumed to be 2 characters (because there are <100 rows, perhaps?). This is directly affecting the first column. This is repeated if we remove the first column (mtcars <- mtcars[,-1]) and its first column cyl is now affected. If we remove the rownames (rownames(mtcars) <- NULL), the problem goes away.
The two columns vs and am do not have a separator pipe | between them.
The text was updated successfully, but these errors were encountered:
The extra rows padding the top are likely for knitr's Rmarkdown ties and can easily be filtered out.
Is it wrong to expect the user will have knitr installed? (If they've installed RStudio -- even if they don't use it regularly -- they already have knitr.)
When running
ess-R-dv-ctable
on R's ubiquitous datasetmtcars
, there are two things wrong:mtcars <- mtcars[,-1]
) and its first columncyl
is now affected. If we remove the rownames (rownames(mtcars) <- NULL
), the problem goes away.vs
andam
do not have a separator pipe|
between them.The text was updated successfully, but these errors were encountered: