Posts

Showing posts from April, 2023

Getting started with a simple Dash App - Part 1/2

Image
Plotly Dash Enterprise is a great platform to design your custom applications to suite any kind of technical problems. Based on python, it also offers all the standard features of the python with simplicity and ease of use. Capabilities to use and integrate any other python libraries seamlessly takes it beyond any of the BI tools available in the market. This article will help you to understand how to start working with Dash apps from scratch. So, let's get started. (If you do not have Dash installed on your system, you may install it using command:  pip install dash) Let's understand the building blocks of a simple Dash app using below diagram. Import Dependancies :  To import required libraries Initialization :  To Initialize the Dash app (This one is standard for all apps) Define Layout :  Here we define the layout using Dash provided html components, so you don't have to write the html code from scratch. Dash will generate backend html from the simple layout defi...