The following code creates a Pandas data frame containing random values and displays the data frame and its contents.
import pandas as pd
import numpy as np
#Create a data frame containing random numbers
dataFrame = pd.DataFrame(np.random.randn(11,6))
#Display contents of the data frame
dataFrame
Author: Prof. Richard G. Baldwin
Affiliation: Professor of Computer Information Technology at Austin Community College in Austin, TX.
File: DisplayPandasDf01.html
Revised: 05/11/18
Copyright 2018 Richard G. Baldwin