I have a dataset with transactions made from 2018/07/01 to 2019/06/30 and I want to find how many unique dates are in the "DATE" column (it has over 260k rows, so a date can be repeated several times).
I have tried the following but it just lists all the dates contained in the "DATE" column:
numberofdates <- dplyr::summarize(transactionData, DATE)
Thanks for your help!