Sharing your interactive visualizations
Up to this moment, we have seen different tools that Julia offers us to create interactive visualizations. Now, we are going to discuss how we can share them. We will also showcase some Julia libraries to create shareable interactive dashboards. The way we can share an interactive visualization depends on the tools we have used to create them. But first, let’s start with the most basic way to share Julia projects.
Creating a Julia application
Creating and distributing a Julia application is an excellent way to share your interactive Julia visualizations; this section will give tips on how to achieve that. A Julia application is simply a folder with a specific structure and project environment with Project.toml
and Manifest.toml
files. We have seen how to create a project environment in Chapter 1, An Introduction to Julia for Data Visualization and Analysis. Therefore, we will describe the folder structure here. Julia applications...