Generate a boxplot for the variables “lastEvaluation” and “numberOfProjects”. For data science using Python in Anaconda - Jupyter

#import the library Pandas
import pandas as pd

#Put the People Charm case.csv dataset on Root Directory
#Read the dataset 
data = pd.read_csv('People Charm case.csv')

#Generate a boxplot for the variables “lastEvaluation” and “numberOfProjects”.
sns.boxplot(x=data["numberOfProjects"], y = data["lastEvaluation"],data = data)



Output:-