in R when I use summary(data.frame) command the results don’t show the details of character variables.
for example summary(b) don’t show how many male or female are there?
example of my problem problem?
how can i solve this problem?
>Solution :
Assuming you used a dummy for gender
gender_counts <- table(your_data$gender)
Then you can use print()
print(gender_counts)