Guest User

Untitled

a guest
Aug 15th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. import numpy as np
  2. import pandas as pd
  3.  
  4. df = pd.DataFrame(np.random.randint(low=0, high=100, size=(100, 4)),
  5. columns=list('ABCD'))
  6.  
  7. df.describe()
Add Comment
Please, Sign In to add comment