Morph allows you to create data apps using visualization libraries within the Python ecosystem. In this tutorial, we will introduce how to embed a rich dashboard created with PyGWalker into a data app.
Please install PyGWalker in advance by the following command.
PyGWalker is a library that creates a dashboard for interactive data analysis from data on a DataFrame. You can easily introduce a BI app by placing it on the data app created by Morph and sharing it with your team.
In this tutorial, we will implement the app in the following steps:
<Embed />
component in the MDX file to display the dashboard.<Embed />
displays the HTML when a Python function that returns HTML is specified as the target of loadData.
Create sample data as a DataFrame, convert the data to a dashboard using PyGWalker, and return it as HTML.
Create sample data as a DataFrame, convert the data to a dashboard using PyGWalker, and return it as HTML.
You can display the dashboard as it is by passing the Python function that outputs HTML directly to the <Embed />
component.
Morph allows you to create data apps using visualization libraries within the Python ecosystem. In this tutorial, we will introduce how to embed a rich dashboard created with PyGWalker into a data app.
Please install PyGWalker in advance by the following command.
PyGWalker is a library that creates a dashboard for interactive data analysis from data on a DataFrame. You can easily introduce a BI app by placing it on the data app created by Morph and sharing it with your team.
In this tutorial, we will implement the app in the following steps:
<Embed />
component in the MDX file to display the dashboard.<Embed />
displays the HTML when a Python function that returns HTML is specified as the target of loadData.
Create sample data as a DataFrame, convert the data to a dashboard using PyGWalker, and return it as HTML.
Create sample data as a DataFrame, convert the data to a dashboard using PyGWalker, and return it as HTML.
You can display the dashboard as it is by passing the Python function that outputs HTML directly to the <Embed />
component.