18 lines
505 B
Python
18 lines
505 B
Python
import subprocess
|
|
import pandas as pd
|
|
import numpy as np
|
|
rc = subprocess.call("./process_data.sh")
|
|
data=pd.read_csv('fake_job_postings.csv')
|
|
data = data.replace(np.nan, '', regex=True)
|
|
|
|
print("="*20)
|
|
print('Ilość wierszy w zbiorze: ',len(data))
|
|
|
|
print("="*10, ' data["department"].value_counts() ', 10*'=')
|
|
print(data["department"].value_counts())
|
|
|
|
print("="*10, ' data.median() ', 10*'=')
|
|
print(data.median())
|
|
|
|
print("="*10, ' data.describe(include="all") ', 10*'=')
|
|
print(data.describe(include='all')) |