Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created August 5, 2018 13:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/0e3c6350c5b7335c2d172f16ff9a8c1b to your computer and use it in GitHub Desktop.
Save Fhernd/0e3c6350c5b7335c2d172f16ff9a8c1b to your computer and use it in GitHub Desktop.
Estadísticas básicas con Pandas. OrtizOL.
import pandas as pd
ratas = pd.read_csv('ratas.csv')
print(ratas.head(5))
print(ratas.tail(5))
print(ratas['status'][0:30])
# Estadísticas:
print(ratas.describe())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment