For example:
data("cars")
count(cars)
I will get a tibble of 1x1, but I would like to assign the count which was 54 into a variable to use later. If I use Select I also get a tibble back, I just want a variable with an int value.
For example:
data("cars")
count(cars)
I will get a tibble of 1x1, but I would like to assign the count which was 54 into a variable to use later. If I use Select I also get a tibble back, I just want a variable with an int value.