filtrado de tipo de cliente
deseo filtrar por el tipo de cliente Customer y por el genero
filt_user_gend <- base %>%
filter(usertype == "Customer" & gender)
lo corro y me da Error
Error in filter(): In argument: usertype == "Customer" & gender. Caused by error in usertype == "Customer" & gender:
[quote="Fchjaguar, post:1, topic:209427"]
filt_user_gend <- base %>%
Welcome to the forum.
You must tell R what values of "Customer" and "gender" you want.
Something like this should work. Otherwise you need to give us more details about what you are doing
filter(usertype == "Customer" & gender == "Female")
``
system
Closed
March 11, 2026, 1:06pm
3
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed. If you have a query related to it or one of the replies, start a new topic and refer back with a link.