In R-studio using expss package to make a table but unlike in the expss example, the headers aren't displaying their labels and area instead displaying zeros and ones.
I've tried using the two different ways to make tables but both give me the same problem.
This first one at least gives me the variable names in the titles:
NESTFH2 %>% tab_cells(FH) %>% tab_cols(Diagnosis.,Strabismus.,Amblyopia.,Glasses) %>% tab_stat_cases() %>% tab_pivot()
This second one doesn't even give the variable names in the titles:
cro_cases(FH, list(Diagnosis.,Strabismus., Amblyopia., Glasses="Glasses"))
P.S also, how can I make the empty space in the "1" column under Amblyopia show the number zero instead of a blank?