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
so the Ncol value and the nhanesDim answer are wrong - they have the same problem as I reported earlier.
once we retrieve the data, it has 145 columns, but both nhanesNcol and nhanesDim incorrectly report it has 290
columns.
I urge putting in more complete descriptions and tests/checks that, for example what is reported by nhnanesDim, nhanesNrow
and nhanesNcol are the same values as you would get from doing
vv = nhanes("table")
dim(vv)
nrow(vv)
ncol(vv)
this kind of unit checking is essential for ensuring that our code works
The text was updated successfully, but these errors were encountered:
Notice here:
I urge putting in more complete descriptions and tests/checks that, for example what is reported by nhnanesDim, nhanesNrow
and nhanesNcol are the same values as you would get from doing
vv = nhanes("table")
dim(vv)
nrow(vv)
ncol(vv)
this kind of unit checking is essential for ensuring that our code works
The text was updated successfully, but these errors were encountered: