File size: 425 Bytes
a1619e5
 
03a8575
54c6f41
a1619e5
54c6f41
 
4457dc0
 
 
03a8575
82ce4f6
54c6f41
 
 
 
 
8d891ed
 
 
4370c02
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import streamlit as st

st.title("Primera Aplicacion StreamLit")

x = st.slider('Select a value')
st.write(x, 'squared is', x * x)

import pandas as pd
import numpy as np

data = np.random.randn(100, 3)
df = pd.DataFrame(data, columns = ["Col1", "Col2", "Col3"])

st.write("Muestra los datos")
st.dataframe(df)

st.write("Grafico de Líneas")
st.line_chart(df)

st.button("Boton de Prueba")
st.text_input("Ingrese el Texto:")