1.0.2 Create dataframe and add columns from lists
Example:
# create example data
DF = pd.DataFrame()
DF['A'] = [1,2,3]
DF['B'] = ['a','b', 'c']
DF['C'] = ['how', 'about','that']
1.0.2 Create dataframe and add columns from lists
Example:
# create example data
DF = pd.DataFrame()
DF['A'] = [1,2,3]
DF['B'] = ['a','b', 'c']
DF['C'] = ['how', 'about','that']