YuchenZeng commited on
Commit
ee39383
1 Parent(s): ab134ef

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -6,7 +6,8 @@ def example_fn(text):
6
  d = {'c1': ["This is col 1"], 'c2': ["This is col 2"], 'c3': ["This is col 3"],
7
  'c4': ["This is col 4"], 'c5': ["This is col 5"], 'c6': ["This is col 6"],
8
  'c7': ["This is col 7"], 'c8': ["This is col 8"], 'c9': ["This is col 9"],
9
- 'c10': ["This is col 10"], 'c11': ["This is col 11"], 'c12': ["This is col 12"]}
 
10
  df = pd.DataFrame(data=d)
11
  return df
12
 
 
6
  d = {'c1': ["This is col 1"], 'c2': ["This is col 2"], 'c3': ["This is col 3"],
7
  'c4': ["This is col 4"], 'c5': ["This is col 5"], 'c6': ["This is col 6"],
8
  'c7': ["This is col 7"], 'c8': ["This is col 8"], 'c9': ["This is col 9"],
9
+ 'c10': ["This is col 10"], 'c11': ["This is col 11"], 'c12': ["This is col 12"],
10
+ 'c13': ["This is col 13"], 'c14': ["This is col 14"], 'c15': ["This is col 15"]}
11
  df = pd.DataFrame(data=d)
12
  return df
13