Hello. I have a dataset that goes something like this
The letters in the columns do not matter (it's actually numbers, I'm just altering the data for privacy purposes). But basically, I want to know in this data set, which is the most common combination. In this simple example, the highest combination can be taken from type, value and character where they occur three times. Second highest would be reason and change, and the least would be text.
The actual data set is much larger hence the need for some.. method.
text | type | change | character | value | reason | ||
Alfred | a | b | a | d | |||
Betty | a | c | a | c | g | s | |
Charlie | v | v | v | g | d |
The letters in the columns do not matter (it's actually numbers, I'm just altering the data for privacy purposes). But basically, I want to know in this data set, which is the most common combination. In this simple example, the highest combination can be taken from type, value and character where they occur three times. Second highest would be reason and change, and the least would be text.
The actual data set is much larger hence the need for some.. method.