Python

Artificial Intelligence Image
DataScience
Python

3 ways to do dimensionality reduction techniques in Scikit-learn

Dimensionality reduction techniques are used to extract informative features that could be used for later learning, etc. Tested PCA, MDS and t-SNE for the breast cancer dataset.

Read More
Analytics Image
Python
Statistics

3 ways to do test of normality with Scipy library in Python

This is the rough guide how to do test of normality for dataset by leveraging Scipy library. I used probplot, the Shapiro-Wilk test and skewness, kurtosis.

Read More
Computer Analysis Image
Crypto
DataScience
Python

Coefficient of variation to compare your crypto assets

This guide shows how to obtain crypto data via CoinGecko API and calculate the coefficient of variation that is a statistical measure of the dispersion of data points.

Read More
Cloud Managed Image
AWS
Python

Post an image tweet with Lambda when S3 event triggered

A lambda function guide with Python 3.7 runtime. The function can be triggered by S3 put event and downloaded image will be posted in Twitter.

Read More
Trading market Image
Crypto
Python

How to obtain crypto execution prices via WebSocket

Crypto exchanges offer realtime endpoint via WebSocket for rates, orderbooks and executions, etc. This article is a guide how to collect such information in Python.

Read More
Machine learning Image
Container
DataScience

A World of Causal Inference with EconML by Microsoft Research

Overview of causal inference and RCT in a nutshell. Starting from RCT and various techniques that have been developed in causal inference. Introduced EconML.

Read More
Machine Learning Image
DataScience
Python

DiCE -ML models with counterfactual explanations for the sunk Titanic data-

This article is an overview why counterfactual explanations are required in recent ML projects and how to apply Microsoft research DiCE library for Titatic data set. There have been some foreseen and ongoing trends in AI/ML for 2020 such as AutoML, MLOps, AI ethic those are to democratize AI/ML in the industries more than ever. […]

Read More
Chart Analysis Image
DataScience
Python

How to draw support and resistence lines with DataFrame in Python

Support and resistence lines are referred to analyze chart patterns, and a direction of assets for traders. This is a guide to draw those lines in matplotlib.

Read More
Trading chart Image
DataScience
Python

How to draw a trend line with DataFrame in Python

Talib library doesn’t support to draw trendlines. This is the article how to compute trendlines from DataFrame and draw it in matplotlib.

Read More
Trading market Image
DataScience
Python

How to draw 4 most common trend indicators in matplotlib in Python

Trend indicators are usable and handy for beginners. Here is to introduce how to draw chars and bars for Moving Averages, MACD, RSI and OBV in Python.

Read More