DavidD003 commited on
Commit
19841de
1 Parent(s): 3b1ea33

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -19,8 +19,8 @@ demo = gr.Interface(
19
  #gr.File(label="Temp Refusal Sheet - COPY OF SHEET WITH VALUES, NO FORMULAS"),
20
  gr.File(label="Data File"),
21
  gr.Textbox(label="Sheet Name"),
22
- gr.Number(label="Number of Columns",precision=0),
23
- gr.Number(label="Number of Rows",precision=0)
24
  ],
25
  [
26
  #gr.Dataframe(
@@ -30,7 +30,7 @@ demo = gr.Interface(
30
  #gr.Textbox(label="dynamic import test"),
31
  gr.File(label="File With Transformed Data")
32
  ],
33
- description="Enter excel file, sheet name, named range name, to have the data changed into a row-wise orientation. Expects the first field to be the unique x1 value, and proceeding fields to have unique 'x2' headers, with cell containing the dependent y for x1 and x2. Then it returns a much longer list with only 3 columns: x1,x2,y",
34
  )
35
 
36
  demo.launch()#Nice!
 
19
  #gr.File(label="Temp Refusal Sheet - COPY OF SHEET WITH VALUES, NO FORMULAS"),
20
  gr.File(label="Data File"),
21
  gr.Textbox(label="Sheet Name"),
22
+ gr.Number(label="Number of Rows",precision=0),
23
+ gr.Number(label="Number of Columns",precision=0)
24
  ],
25
  [
26
  #gr.Dataframe(
 
30
  #gr.Textbox(label="dynamic import test"),
31
  gr.File(label="File With Transformed Data")
32
  ],
33
+ description="Enter excel file, sheet name, the excel row at which the table ends, and the column number at which the table ends, to have the data changed into a row-wise orientation. This function expects the table to start at A1, expects the first field to be the unique x1 value, and proceeding fields to have unique 'x2' headers, with cell containing the dependent y for x1 and x2. Then it returns a much longer list with only 3 columns: x1,x2,y",
34
  )
35
 
36
  demo.launch()#Nice!