13 lines
298 B
Python
13 lines
298 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import pandas as pd
|
|
|
|
# Data description
|
|
no_shows=pd.read_csv('KaggleV2-May-2016.csv')
|
|
|
|
# Wielkość zbioru
|
|
print(f"Wielkosc zbioru: {len(no_shows)}")
|
|
|
|
# Opis parametrów
|
|
print(no_shows.describe(include='all'))
|
|
no_shows.describe(include='all').to_csv("data_description.csv") |