Skip to content

[BUG] Exporting to Streamlit #501

Description

@doufs

Describe the bug
According to the "Exporting to Streamlit" part of docs, after running the example code, it didn't display the HTML content and i found one Error in the browser Console. code is same as docs:

import streamlit as st
import streamlit.components.v1 as components
from pathlib import Path
import pandas as pd
import lux


def app():
    st.title('Analysis of Happy Planet Index Dataset')
    st.write('Check out these cool visualizations!')
    df = pd.read_csv("https://raw.githubusercontent.com/lux-org/lux-datasets/master/data/hpi.csv")
    export_file = 'visualizations.html'
    html_content = df.save_as_html(output=True)
    components.html(html_content, width=800, height=350)


app()

Screenshots
Displayed:
image
Error found:
image

Expected behavior
Displayed according to docs:
image

Could you tell me how to solve this problem?ah..... i'm not skilling at JavaScript related....pls, thanks

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions