financIA / pages /1_đź“ŠAnalisis_exploratorio.py
Frorozcol's picture
Addes the inferencia
773ed41
raw history blame
No virus
314 Bytes
import os
import streamlit as st
import streamlit.components.v1 as components
def main():
st.title("Análisis exploratorio")
with open('html/0-1 Pysentimiento.html', 'r', encoding='utf-8') as file:
markdown_text = file.read()
components.html(markdown_text,height=1000,scrolling=True)
main()