How I Created a Football Prediction App on Streamlit

This tutorial shows you how I created a model to predict football results using Poisson distribution. You’ll learn how I designed an interactive dashboard on Streamlit where our users can select a team and get to know the odds of a home win, draw, or away win. Here’s a live demo of using the app … Read more

How I Built a House Price Prediction App Using Streamlit

In this tutorial, I will take you through a machine learning project on House Price prediction with Python. We have previously learned how to solve a classification problem. πŸ‘‰ Recommended: How I Built and Deployed a Python Loan Eligibility Prediction App on Streamlit Today, I will show you how to solve a regression problem and … Read more

How I Built and Deployed a Python Loan Eligibility Prediction App on Streamlit

In this tutorial, I will walk you through a machine-learning project on Loan Eligibility Prediction with Python. Specifically, I will show you how to create and deploy machine learning web applications using Streamlit. Streamlit makes it easy for data scientists with little or no knowledge of web development to develop and deploy machine learning apps … Read more

How I Built a Readability and Grammar Checker App Using Streamlit

I will show you the steps I took to create a readability and grammar checker app using Streamlit. You can use it to improve your programming skills and add to your portfolio. πŸ’‘ Info: Streamlit is a popular open-source app framework among data scientists as it’s used for developing and deploying Machine Learning and Data … Read more

Plotly Dash vs. Streamlit

What are Plotly Dash and Streamlit? Plotly Dash and Streamlit are both open-source Python libraries for creating interactive web applications for data visualization and analysis. The libraries are designed to make it easy for developers to create visually appealing and informative dashboards and reports that can be shared with others through a web browser. Some … Read more

How to Sell Coupons on ETH? Integrate Frontend with Smart Contract (4/4)

How to Sell Coupons on ETH? Creating your own sample dApp in four parts: Welcome to the last part of the series. πŸ›‘ Note: This is just a training “fun” dApp that shows you how to use React, Truffle, and Solidity. It is not a real dApp with real functionality! Imaginary Scenario: Finxter academy has … Read more

How to Sell Coupons on ETH? Web3.js and Connect Frontend with Metamask (3/4)

How to Sell Coupons on ETH? Creating your own sample dApp in four parts: Welcome to the front-end journey for the Finxter coupon Dapp. πŸ›‘ Note: This is just a training “fun” dApp that shows you how to use React, Truffle, and Solidity. It is not a real dApp with real functionality! Imaginary Scenario: Finxter … Read more

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

How to Create, Update, and Query an SQLite Database in Python?

Problem Formulation and Solution Overview This article will show you how to create, update and query a SQLite database using Python. ℹ️The SQLite database is a great choice! It is self-contained, easy to use, easy to learn, and works on other devices, such as game consoles, mobile phones, and so on! To make it more … Read more