Sample file Imdb sample
In the film data set I have same titles available: 'A star is born' aka 'Narodziny gwiazdy' - four times, 'Halloween' - 3 times. These are different movies as released in different years. How to filter only these titles which are present multiple times and display the details for them?
(titleDetails <- imdb_movies.csv %>%
group_by(Title) %>%
summarise(count = n()) %>%
filter(count > 2))
titleDetails
Code above will display only title and count.
How to display all details which I have in the data set?