Uncategorized

Beyond the Basics: Unconventional Uses of Seaborn Heatmaps for Data Visualization

2 Unusual Applications of Heatmaps in Data Science temperature changes, Topographic heatmap, Table of contents : Heatmaps can bring your data to life. Versatile and eye-catching. There are many situations where they can highlight important relationships in your data. Specifically, we will discuss how you can use them to visualise: What are Heatmaps? Temperature changes …

Beyond the Basics: Unconventional Uses of Seaborn Heatmaps for Data Visualization Read More »

Linear Regression vs. Decision Trees vs. Support Vector Machines

Machine Learning algorithms are one of the most important things to decide during model training and building. All the datasets and problem statements related to that in machine learning are not the same and can have different patterns and complexity. In such cases, selecting the best suitable machine learning algorithms becomes a significant step of …

Linear Regression vs. Decision Trees vs. Support Vector Machines Read More »

An Overview of Python Terminal Plotting Libraries

There exist many terminal plotting libraries. In Python there are some 3-4 main ones. In this post we’ll have an overview of the libraries. asciichartpy It is a node-js inspired lib with live plotting enabled. Disregard the nodejs readme termplotlib Just a wrapper over gnuplot bashplotlib Solid minimal and impressive pure-python monochrome lib terminalplot No …

An Overview of Python Terminal Plotting Libraries Read More »

How to install Python-efl on Ubuntu or Linux Mint

Python-efl is the binding for EFL, an awesome and performance-obcessed set of libraries. EFL stands for Enlightment Foundation Libraries. It was started for the Enlightment desktop project and developed into a set of libraries. This tutorial shows how to install python-efl. Install Instructions First create a new folder called efl_dev mkdir efl_dev cd efl_dev Then …

How to install Python-efl on Ubuntu or Linux Mint Read More »

How to get server response from DropzoneJs for chunk uploads

After much struggling, here’s the magical formula we got for getting the server response back for chunck uploads: var myDropzone = new Dropzone(document.body, { // Make the whole body a dropzone thumbnailWidth: 80, thumbnailHeight: 80, parallelUploads: 20, previewTemplate: previewTemplate, autoQueue: false, // Make sure the files aren’t queued until manually added previewsContainer: “#previews”, // Define …

How to get server response from DropzoneJs for chunk uploads Read More »

What’s New in Python 3.9 alpha2?

Python is set to release a new version next year, the shiny 3.9. This one omitted the sys.argv change rolled back in alpha2 Here’s our take of the most noticeable changes: Keyword Arguments Get Some Boost improved original Audit hooks added for sys.excepthook() and sys.unraisablehook() Audit hooks were added in PEP 578. It basically allows you to monitor …

What’s New in Python 3.9 alpha2? Read More »

Machine Learning part 3: regression

Machine Learning ♡ supervised learning♡ unsupervised learning♡ reinforcement learning #3 supervised learning: regression note: independent variables are also called *features* regression simply means prediction. there are many types of regression methods: – simple linear regression– multivariate linear regression– polynomial regression– ridge regression– lasso regression 🎁 simple linear regression means predicting for only two variables, a …

Machine Learning part 3: regression Read More »