How can I count the number of distinct visit_ids per pagename?
visit_id  post_pagename
1       A
1       B
1       C
1       D 
2       A
2       A
3       A
3       B
Result should be:
post_pagename distinct_visit_ids
A     3
B     2
C     1
D     1
tried it with
test_df<-data.frame(cbind(c(1,1,1,1,2,2,3,3),c("A","B","C","D","A","A","A","B")))
colnames(test_df)<-c("visit_id","post_pagename")
test_df
test_df %>%
 group_by(post_pagename) %>%
  summarize(vis_count = n_distinct(visit_id))
But this gives me only the amount of distinct visit_id in my data set
 
     
    