Tugas Besar
Tugas Besar
Kelompok 1
Employee_Performance
Hammam Rizqullah Maulana (23522236)
df = pd.read_csv("employee_performance.csv")
print(df.to_string())
df = pd.read_csv(('employee_performance.csv'))
new_df = df.dropna()
print(new_df.to_string)
Line Plot
In [1]: import pandas as pd
import matplotlib.pyplot as plt
df = pd.read_csv('employee_performance.csv')
df.plot()
plt.plot()
[]
Out[1]: