The dataset is about freelance jobs and earnings where each entry represents a freelance worker. There are fields that describe the work such as job category and platform of connection, and fields that describe the worker like experience level, total earning (USD), and job success rate. The dataset has 1950 entries and 15 fields. (Source: kaggle.com | User: Shohinur Pervez Shohan)
As the dataset was already cleaned, no further cleaning or filtering was necessary. The absence of missing and duplicated values was double checked with the following code:
sum(is.na(df))
## [1] 0
sum(duplicated(df))
## [1] 0