Hello,
I am creating a code to view the district position and soil type. I wanted to create a count for the soil type so instead of the data being like this:
DistrictPosition SoilID SoilName
S 838 Prior
N 802 Liverpool
N 802 Liverpool
N 802 Liverpool
N 803 Brosnan
To this: I need to remove soilname, I am running a dataset with 3775 lines but condensed it to just the 5.
DistrictPosition SoilID Count
S 838 1
N 802 3
N 803 1
Hopefully this is possible,
I appreciate the help!