Answers for "how to make a simple random numbered dataframes"

1

create pandas dataframe with random numbers

#using numpy's randint
df = pd.DataFrame(np.random.randint(0,100,size=(15, 4)), columns=list('ABCD'))
Posted by: Guest on February-23-2021

Code answers related to "how to make a simple random numbered dataframes"

Python Answers by Framework

Browse Popular Code Answers by Language