Update app.py
Browse files
app.py
CHANGED
@@ -410,7 +410,7 @@ def limpiar_datos(n_replicas):
|
|
410 |
df = pd.DataFrame({
|
411 |
"Soluci贸n": [1/(2**i) for i in range(7)],
|
412 |
"H2O": [1-(1/(2**i)) for i in range(7)],
|
413 |
-
"
|
414 |
f"Concentraci贸n Predicha ({unidad_predicha})": [2000000/(1/(1/(2**i))) for i in range(7)]
|
415 |
})
|
416 |
# Creamos columnas de absorbancia real vac铆as
|
@@ -651,7 +651,7 @@ def iniciar_con_ejemplo():
|
|
651 |
df = pd.DataFrame({
|
652 |
"Soluci贸n": [1.00,0.80,0.67,0.60,0.53,0.47,0.40],
|
653 |
"H2O": [0.00,0.20,0.33,0.40,0.47,0.53,0.60],
|
654 |
-
"
|
655 |
f"Concentraci贸n Predicha ({unidad_predicha})": [150,120,100,90,80,70,60],
|
656 |
f"Absorbancia Real 1 ({unidad_replicas})": [1.715,1.089,0.941,0.552,0.703,0.801,0.516]
|
657 |
})
|
@@ -942,7 +942,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as interfaz:
|
|
942 |
df = pd.DataFrame({
|
943 |
"Soluci贸n": [1.00,0.80,0.67,0.60,0.53,0.47,0.40],
|
944 |
"H2O": [0.00,0.20,0.33,0.40,0.47,0.53,0.60],
|
945 |
-
"
|
946 |
f"Concentraci贸n Predicha ({unidad_predicha})": [150,120,100,90,80,70,60]
|
947 |
})
|
948 |
for i in range(1, n_replicas + 1):
|
@@ -955,7 +955,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as interfaz:
|
|
955 |
df = pd.DataFrame({
|
956 |
"Soluci贸n": [1.00,0.80,0.60,0.40,0.20,0.10,0.05],
|
957 |
"H2O": [0.00,0.20,0.40,0.60,0.80,0.90,0.95],
|
958 |
-
"
|
959 |
f"Concentraci贸n Predicha ({unidad_predicha})": [1.0,0.8,0.6,0.4,0.2,0.1,0.05]
|
960 |
})
|
961 |
for i in range(1, n_replicas + 1):
|
|
|
410 |
df = pd.DataFrame({
|
411 |
"Soluci贸n": [1/(2**i) for i in range(7)],
|
412 |
"H2O": [1-(1/(2**i)) for i in range(7)],
|
413 |
+
"Dimensi贸n de Diluci贸n": [(1/(1/(2**i))) for i in range(7)],
|
414 |
f"Concentraci贸n Predicha ({unidad_predicha})": [2000000/(1/(1/(2**i))) for i in range(7)]
|
415 |
})
|
416 |
# Creamos columnas de absorbancia real vac铆as
|
|
|
651 |
df = pd.DataFrame({
|
652 |
"Soluci贸n": [1.00,0.80,0.67,0.60,0.53,0.47,0.40],
|
653 |
"H2O": [0.00,0.20,0.33,0.40,0.47,0.53,0.60],
|
654 |
+
"Dimensi贸n de Diluci贸n": [1.00,1.25,1.50,1.67,1.87,2.14,2.50],
|
655 |
f"Concentraci贸n Predicha ({unidad_predicha})": [150,120,100,90,80,70,60],
|
656 |
f"Absorbancia Real 1 ({unidad_replicas})": [1.715,1.089,0.941,0.552,0.703,0.801,0.516]
|
657 |
})
|
|
|
942 |
df = pd.DataFrame({
|
943 |
"Soluci贸n": [1.00,0.80,0.67,0.60,0.53,0.47,0.40],
|
944 |
"H2O": [0.00,0.20,0.33,0.40,0.47,0.53,0.60],
|
945 |
+
"Dimensi贸n de Diluci贸n": [1.00,1.25,1.50,1.67,1.87,2.14,2.50],
|
946 |
f"Concentraci贸n Predicha ({unidad_predicha})": [150,120,100,90,80,70,60]
|
947 |
})
|
948 |
for i in range(1, n_replicas + 1):
|
|
|
955 |
df = pd.DataFrame({
|
956 |
"Soluci贸n": [1.00,0.80,0.60,0.40,0.20,0.10,0.05],
|
957 |
"H2O": [0.00,0.20,0.40,0.60,0.80,0.90,0.95],
|
958 |
+
"Dimensi贸n de Diluci贸n": [1.00,1.25,1.67,2.50,5.00,10.00,20.00],
|
959 |
f"Concentraci贸n Predicha ({unidad_predicha})": [1.0,0.8,0.6,0.4,0.2,0.1,0.05]
|
960 |
})
|
961 |
for i in range(1, n_replicas + 1):
|