fschwartzer commited on
Commit
dfe908c
1 Parent(s): 15a4745

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -5,8 +5,8 @@ import numpy as np
5
 
6
  df = pd.read_excel('MOD_VC.xlsx', 'DF')
7
 
8
- df[['AREA', 'TEST', 'VU']] = np.log(df[['AREA', 'TEST', 'VU']])
9
- df['RB'] = 1/df['RB']
10
 
11
  # Separar as variáveis independentes (X) e dependente (y)
12
  X = df[['AREA', 'TEST', 'PAV', 'POS', 'RB']]
@@ -21,8 +21,8 @@ def predict(file):
21
  input_df = pd.read_excel(file)
22
 
23
  # Processamento da planilha de input
24
- input_df[['AREA', 'TEST']] = np.log(input_df[['AREA', 'TEST']])
25
- input_df['RB'] = 1/input_df['RB']
26
 
27
  # Preparar dados para predição
28
  X_new = np.array(input_df)
@@ -38,8 +38,8 @@ def predict(file):
38
  input_df['LI_IC'] = inter_conf[:, 0]
39
  input_df['LS_IC'] = inter_conf[:, 1]
40
 
41
- input_df[['AREA', 'TEST']] = np.exp(input_df[['AREA', 'TEST']])
42
- input_df['RB'] = 1/input_df['RB']
43
 
44
  # Save the output DataFrame as an XLS file
45
  output_file = 'avaliacao_massa.xlsx'
 
5
 
6
  df = pd.read_excel('MOD_VC.xlsx', 'DF')
7
 
8
+ df[['AREA', 'TEST', 'VU']] = np.log(df[['AREA', 'TEST', 'VU']]).round(2)
9
+ df['RB'] = (1/df['RB']).round(2)
10
 
11
  # Separar as variáveis independentes (X) e dependente (y)
12
  X = df[['AREA', 'TEST', 'PAV', 'POS', 'RB']]
 
21
  input_df = pd.read_excel(file)
22
 
23
  # Processamento da planilha de input
24
+ input_df[['AREA', 'TEST']] = np.log(input_df[['AREA', 'TEST']]).round(2)
25
+ input_df['RB'] = (1/input_df['RB']).round(2)
26
 
27
  # Preparar dados para predição
28
  X_new = np.array(input_df)
 
38
  input_df['LI_IC'] = inter_conf[:, 0]
39
  input_df['LS_IC'] = inter_conf[:, 1]
40
 
41
+ input_df[['AREA', 'TEST']] = np.exp(input_df[['AREA', 'TEST']]).round(2)
42
+ input_df['RB'] = (1/input_df['RB']).round(2)
43
 
44
  # Save the output DataFrame as an XLS file
45
  output_file = 'avaliacao_massa.xlsx'