I'm working with following dataset:
| Country | HaveWorkedLanguage
1 | United States | Swift
2 | United States | Python
3 | Austria | JavaScript
4 | Austria | JavaScript
5 | United States | Swift
I'd like to sum up all the Programming Languages. The output should look like this:
| Country | HaveWorkedLanguage | Frequency
1 | United States | Swift | 2
2 | United States | Python | 1
3 | Austria | JavaScript | 2
I already played around with table()
but couldn't make it right.