Plotly Dash Checklist Components

Welcome to the bonus content of “The Book of Dash”. πŸ€— Here you will find additional examples of Plotly Dash components, layouts and style. To learn more about making dashboards with Plotly Dash, and how to buy your copy of “The Book of Dash”, please see the reference section at the bottom of this article. … Read more

Plotly Dash: Bootstrap Indicator Components Made Easy

Welcome to the bonus content of “The Book of Dash”. πŸ€— Here you’ll find additional examples of Plotly Dash components, layouts and style. To learn more about making dashboards with Plotly Dash, and how to buy your copy of “The Book of Dash”, please see the reference section at the bottom of this article. This … Read more

Python Plot Logarithmic Axes — Easy Bitcoin Example

Quick Answer: To print a logarithmic x-axis or y-axis (base 10) without a Matplotlib axis object use plt.xscale(‘log’) or plt.yscale(‘log’). To set different bases or switch back to a linear scale, use {“linear”, “log”, “symlog”, “logit”} or set the basex and basey arguments (e.g., plt.yscale(‘log’, basey=2) for log base 2). Next, we’ll have a look … Read more

How to Save and Load Machine Learning Models in Python

In this tutorial, you will learn –  How to create a basic linear regression model How to save and load an ML model using Pickle module How to save and load an ML model using Joblib module Background and Motivation Over the past years, Machine Learning (ML) has grown in importance with easy access to … Read more

Python Time Series Forecast on Bitcoin Data (Part II)

A Time Series is essentially a tabular data with the special feature of having a time index. The common forecast taks is ‘knowing the past (and sometimes the present), predict the future’. This task, taken as a principle, reveals itself in several ways: in how to interpret your problem, in feature engineering and in which … Read more

Plotly Dash Button Component – A Simple Illustrated Guide

Welcome to the bonus content of “The Book of Dash”. πŸ€— Here you will find additional examples of Plotly Dash components, layouts and style. To learn more about making dashboards with Plotly Dash, and how to buy your copy of “The Book of Dash”, please see the reference section at the bottom of this article. … Read more

Plotly Dash Slider Component — Ultimate Guide

Welcome to the bonus content of “The Book of Dash“. πŸ€— Here you will find additional examples of Plotly Dash components, layouts and style. To learn more about making dashboards with Plotly Dash, and how to buy your copy of “The Book of Dash”, please see the reference section at the bottom of this article. … Read more