Namya Shahbigsmoke.hashnode.dev·Dec 26, 2023Python Statistics ModuleFunctions for Statistical Calculations: statistics.mean(): Calculates the arithmetic mean of a sequence of numbers. statistics.median(): Calculates the median of a sequence of numbers. statistics.mode(): Calculates the mode of a sequence of number...harmonic mean
JungleSvenjunglesven.hashnode.dev·Sep 4, 2023Classification of Market Regimes Using Standard DeviationUnderstanding what's currently happening in the market is crucial to make informed decisions. The concept of market regimes helps us gain insight into this. In broad terms, the market can be bullish, bearish, or range-bound. Professionals identify ov...37 readstrading,
How Rui Yangblog.howry.dev·Aug 23, 2023Calculating Volatility using Log Returns... Why and How?Options & Volatility Roughly a week ago, we witnessed the second-largest liquidation event in Deribit history. Doing some research, it seems that the rapid liquidation of these short positions was one of the driving factors in the 10% drawdown. This ...10 likes·276 readsstatistics
Aman Singanamalaamansinganamala.hashnode.dev·Jul 29, 2022Statistics Concepts in Data-ScienceImporting Libraries and Read Data import pandas as pd import numpy as np import matplotlib.pyplot as plt Read the Data and get the first rows of the DataFrame data = pd.read_csv(‘files/weight-height.csv’) Output Count The count is descriptive st...24 likes·67 readsData Science