Σ
SDCalc
AdvancedAdvanced·12 min

Geometric Standard Deviation: Kumpletong Gabay

Kumpletong gabay sa geometric standard deviation para sa pagsusuri ng mga ratio, growth rates, at log-normally distributed data. Kasama ang mga formula, hakbang ng kalkulasyon, Python code, at mga aplikasyon sa pananalapi at agham.

Kailan Gamitin ang Geometric Standard Deviation

Ang geometric standard deviation (GSD) ang naaangkop na sukatan ng pagkakalat para sa data na multiplicative sa halip na additive—tulad ng growth rates, ratios, concentrations, o anumang log-normally distributed na mga sukat.

Isipin ang mga stock return: ang pagtaas ng 10% na sinundan ng pagbaba ng 10% ay hindi ka ibabalik sa dating halaga (magkakaroon ka ng 99% ng orihinal). Ang mga multiplicative na relasyong ito ay nangangailangan ng geometric statistics sa halip na arithmetic.

Pangunahing Insight

Kung ang iyong data ay sumasaklaw ng ilang orders of magnitude, palaging positibo, at mukhang right-skewed kapag ni-plot nang normal ngunit symmetric kapag ni-plot sa log scale—nagde-deal ka sa log-normal data na nangangailangan ng geometric statistics.

Pag-unawa sa Log-Normal Data

Ang data ay log-normally distributed kapag ang natural logarithm nito ay sumusunod sa normal distribution. Mga karaniwang halimbawa:

  • Mga presyo ng stock at investment returns sa paglipas ng panahon
  • Mga distribusyon ng kita at kayamanan
  • Mga laki ng particle sa aerosols at pharmaceuticals
  • Mga bilang ng bacterial colony at viral loads
  • Mga konsentrasyon ng environmental pollutant
  • Mga antibody titer at drug concentration

Ang pangunahing katangian: ang mga prosesong nagsasangkot ng paulit-ulit na pagpaparami ay gumagawa ng log-normal distributions, tulad ng paulit-ulit na pagdaragdag na gumagawa ng normal distributions.

Formula at Kalkulasyon

Geometric Standard Deviation

GSD = exp(√[Σ(ln xᵢ - ln x̄ₘ)² / (n-1)])

O mas simple: kunin ang natural log ng lahat ng halaga, kalkulahin ang regular standard deviation, pagkatapos i-exponentiate.

1

I-transform ang Data

Kalkulahin ang natural log ng bawat halaga: yᵢ = ln(xᵢ)
2

Kalkulahin ang Mean

Hanapin ang arithmetic mean ng mga log values: ȳ = Σyᵢ/n
3

Kalkulahin ang SD

Hanapin ang standard deviation ng mga log values: s = √[Σ(yᵢ-ȳ)²/(n-1)]
4

I-back-transform

I-exponentiate upang makuha ang GSD: GSD = eˢ
Python
import numpy as np
from scipy import stats

def geometric_sd(data):
    """Calculate geometric standard deviation"""
    log_data = np.log(data)
    sd_log = np.std(log_data, ddof=1)
    return np.exp(sd_log)

def geometric_mean(data):
    """Calculate geometric mean"""
    return stats.gmean(data)

# Example: Antibody titers (highly variable, log-normal)
titers = [64, 128, 256, 128, 512, 64, 256]
gm = geometric_mean(titers)
gsd = geometric_sd(titers)
print(f"Geometric Mean: {gm:.1f}")
print(f"Geometric SD: {gsd:.2f}")

Pag-interpret ng GSD Values

Hindi tulad ng arithmetic SD na nasa parehong unit ng iyong data, ang GSD ay isang multiplicative factor—isang ratio. Ang GSD na 2.0 ay nangangahulugang karaniwang nag-iiba ang data sa factor na 2.

  • GSD = 1.0:Walang variation (imposible sa praktika)
  • GSD ≈ 1.2:Mababang variability (±20% ang karaniwan)
  • GSD ≈ 2.0:Katamtamang variability (doble/kalahati ang data)
  • GSD ≈ 3.0:Mataas na variability (sumasaklaw sa isang order of magnitude)

Mga Confidence Interval

Para sa log-normal data, ang 95% range ay humigit-kumulang: Geometric Mean ÷ GSD² hanggang Geometric Mean × GSD². Para sa GM=100 at GSD=2, ang range ay 25 hanggang 400.

Mga Aplikasyon sa Totoong Mundo

Pharmaceutical Sciences

Particle size distribution (D50, GSD) · Drug concentration variability · Bioavailability studies · Aerosol characterization

Pananalapi at Ekonomiya

Investment return volatility · Growth rate analysis · Income distribution studies · Asset price modeling

GSD vs Regular SD

Ang paggamit ng arithmetic SD sa log-normal data ay nagbibigay ng nakakalitong resulta:

Halimbawa: Viral Load Data

Mga halaga: 1,000; 5,000; 10,000; 50,000; 100,000 copies/mL Arithmetic Mean ± SD: 33,200 ± 41,424 Geometric Mean × GSD: 10,000 × 4.5 → Range: 2,222 hanggang 45,000 Ang arithmetic SD ay magsu-suggest na posible ang negatibong halaga—imposible para sa viral loads!

Palaging Suriin ang Distribution

Bago kalkulahin ang anumang spread measure, i-visualize ang iyong data. Kung right-skewed ito na may mahabang buntot, subukan ang log transformation. Kung naging symmetric ito, gumamit ng geometric statistics.

Further Reading

How to Read This Article

A statistics tutorial is a practical interpretation guide, not just a formula dump. It refers to the assumptions, notation, and reporting language that analysts need when they explain a result to a teacher, manager, client, or reviewer. The article body covers the specific topic, while the sections below create a common interpretation frame that readers can reuse across related metrics.

Reading goalWhat to focus onCommon mistake
DefinitionWhat the metric is and what quantity it summarizesTreating the formula as self-explanatory
Formula choiceSample versus population assumptions and notationUsing n when n-1 is required or vice versa
InterpretationWhether the result indicates concentration, spread, or riskCalling a large value good or bad without context

Frequently Asked Questions

How should I interpret a high standard deviation?

A high standard deviation means the observations are spread farther from the mean on average. Whether that spread is acceptable depends on the context: wide dispersion might signal risk in finance, instability in manufacturing, or genuine natural variation in scientific data.

Why do some articles mention n while others mention n-1?

The denominator reflects the difference between population and sample formulas. Population variance and population standard deviation use N because the full dataset is known. Sample variance and sample standard deviation often use n-1 because Bessel’s correction reduces bias when estimating population spread from a sample.

What is a statistical interpretation guide?

A statistical interpretation guide is a page that moves beyond arithmetic and explains meaning. It tells you what a metric is, when the formula applies, and how to describe the result in plain English without overstating certainty.

Can I cite this article in a report?

You should cite the underlying authoritative reference for formal work whenever possible. This page is best used as an explanatory bridge that helps you understand the concept before quoting the original standard or handbook.

Why include direct citations on every article page?

Direct citations give readers a route to verify the definition, notation, and assumptions. That improves trust and reduces the chance that a simplified explanation is mistaken for the entire technical standard.

Authoritative References

These sources define the concepts referenced most often across our articles. Bessel's correction is a sample adjustment, variance is a squared measure of spread, and standard deviation is the square root of variance expressed in the same units as the data.