Tagged articles
240 articles
Page 3 of 3
MaGe Linux Operations
MaGe Linux Operations
Feb 9, 2019 · Fundamentals

Estimating Coin Toss Probability with Maximum Likelihood in Python

This article demonstrates how to use Python to simulate coin tosses, construct the likelihood function for a Bernoulli distribution, and apply maximum likelihood estimation to recover the underlying head probability, illustrating the method with code, equations, and visualizations.

BernoulliMaximum LikelihoodPython
0 likes · 5 min read
Estimating Coin Toss Probability with Maximum Likelihood in Python
21CTO
21CTO
Oct 3, 2018 · Operations

Master HAProxy: Configure ACLs, Backends, Frontends, and Stats in Minutes

This guide explains how to set up HAProxy, covering core concepts such as ACLs, backends, frontends, optional statistics, a complete configuration example, and step‑by‑step deployment on Linux, enabling you to quickly build a reliable load‑balancing proxy.

ACLHAProxyLinux
0 likes · 6 min read
Master HAProxy: Configure ACLs, Backends, Frontends, and Stats in Minutes
MaGe Linux Operations
MaGe Linux Operations
Aug 6, 2018 · Fundamentals

Estimating Coin Toss Probability with Maximum Likelihood in Python

This article explains the concept of maximum likelihood estimation (MLE) and demonstrates how to estimate the probability of heads in a coin‑toss experiment using Python simulation, sympy for the likelihood function, and visualisation of the resulting discrete probability distribution.

Coin TossMLEMaximum Likelihood
0 likes · 5 min read
Estimating Coin Toss Probability with Maximum Likelihood in Python
MaGe Linux Operations
MaGe Linux Operations
Jul 18, 2018 · Fundamentals

Unlock Stock Insights: Analyzing Apple Prices with NumPy in Python

This tutorial shows how to load Apple stock data from a CSV file using NumPy, then compute basic statistics such as mean, weighted average, min/max, variance, daily returns, volatility, and weekday‑based price averages, illustrating essential data‑analysis functions for finance.

NumPyStock Pricesstatistics
0 likes · 13 min read
Unlock Stock Insights: Analyzing Apple Prices with NumPy in Python
MaGe Linux Operations
MaGe Linux Operations
Apr 3, 2018 · Fundamentals

Unlock Stock Insights: An Apple Price Analysis with NumPy

This tutorial walks through loading Apple stock CSV data with NumPy, computing basic statistics like mean, median, variance, weighted average, daily returns, volatility, and handling dates, while demonstrating essential NumPy functions and code snippets for practical financial data analysis.

NumPydata-analysisstatistics
0 likes · 13 min read
Unlock Stock Insights: An Apple Price Analysis with NumPy
AI Cyberspace
AI Cyberspace
Apr 3, 2018 · Fundamentals

When Do Random Events Follow a Poisson Distribution? A Practical Guide

The article explains the Poisson distribution, its probability mass function, the three conditions required for its use, provides real‑world examples such as bus arrivals and radioactive decay, and illustrates its cumulative curve and why many everyday phenomena fit this model.

Poisson distributionPoisson processprobability
0 likes · 5 min read
When Do Random Events Follow a Poisson Distribution? A Practical Guide
21CTO
21CTO
Sep 27, 2017 · Fundamentals

Mastering A/B Testing: Essential Statistical Concepts for Data‑Driven Decisions

This article explains the statistical foundations of A/B experiments—including population, sample, sampling error, confidence intervals, hypothesis testing, type I/II errors, statistical significance, and power—so engineers can design reliable tests and interpret results with confidence.

A/B testingconfidence intervalhypothesis testing
0 likes · 20 min read
Mastering A/B Testing: Essential Statistical Concepts for Data‑Driven Decisions
Architects' Tech Alliance
Architects' Tech Alliance
Jul 10, 2017 · Big Data

Comprehensive Collection of Technical Interview Questions from Major Tech Companies

This article compiles a wide range of interview questions sourced from Glassdoor covering general topics, machine learning, statistics, programming, big‑data frameworks, SQL, and brain‑teasers, providing candidates with English translations and insights into the types of problems asked by companies such as Apple, Google, Microsoft, Uber, and many others.

Data ScienceSQLinterview-questions
0 likes · 30 min read
Comprehensive Collection of Technical Interview Questions from Major Tech Companies
Didi Tech
Didi Tech
Jul 10, 2017 · Fundamentals

Statistical Foundations for A/B Testing: Populations, Samples, Confidence Intervals, and the Central Limit Theorem

This article explains the essential statistical concepts—populations, samples, sampling error, confidence intervals, the Central Limit Theorem, and normal distribution—that underpin A/B testing, showing how they enable reliable hypothesis evaluation, accurate impact prediction, and data‑driven decision making for product experiments.

A/B testingSamplingcentral limit theorem
0 likes · 14 min read
Statistical Foundations for A/B Testing: Populations, Samples, Confidence Intervals, and the Central Limit Theorem
dbaplus Community
dbaplus Community
Jun 26, 2017 · Databases

Turning a 12‑Hour Oracle Query into Minutes: Proven SQL Tuning Techniques

This article walks through a real‑world Oracle SQL tuning case, showing how to dissect a 12‑hour execution plan, fix cardinality and statistics issues, eliminate costly Filter operations, rewrite queries for efficient HASH JOINs, and leverage tools like 10053 and SQLT to dramatically improve performance.

Oracleexecution planstatistics
0 likes · 23 min read
Turning a 12‑Hour Oracle Query into Minutes: Proven SQL Tuning Techniques
MaGe Linux Operations
MaGe Linux Operations
Jun 5, 2017 · Artificial Intelligence

Top 15 Python Libraries Every Data Scientist Should Master

This article surveys the most essential Python packages for data science, covering core scientific libraries, visualization tools, machine‑learning frameworks, natural‑language‑processing kits, and data‑mining utilities, with brief descriptions and links to each project.

data-sciencelibrariesmachine-learning
0 likes · 12 min read
Top 15 Python Libraries Every Data Scientist Should Master
MaGe Linux Operations
MaGe Linux Operations
May 11, 2017 · Artificial Intelligence

Essential Math Foundations for AI: Linear Algebra, Probability & More

The article reviews the surge of AI interest sparked by AlphaGo and Master, explains why strong mathematics—especially linear algebra, probability, statistics, calculus, and optimization—is crucial for AI practitioners, and provides curated free online courses, textbooks, and resources to help beginners master these subjects.

AIResourceslinear algebra
0 likes · 14 min read
Essential Math Foundations for AI: Linear Algebra, Probability & More
ITPUB
ITPUB
Nov 4, 2016 · Databases

Mastering Oracle Statistics Collection: When, How, and Optimization Tips

This guide explains when and why Oracle statistics are needed, how to control automatic and manual collection, prevent out‑of‑range errors, boost efficiency with parallel and incremental methods, and handle special cases like volatile or temporary tables for optimal query performance.

DBADatabase OptimizationOracle
0 likes · 16 min read
Mastering Oracle Statistics Collection: When, How, and Optimization Tips
ITPUB
ITPUB
Nov 3, 2016 · Databases

Mastering Oracle Optimizer Statistics: When and How to Collect Them

This guide explains the role of optimizer statistics in Oracle, when to gather them, how to use automatic and manual collection jobs, tune ESTIMATE_PERCENT and METHOD_OPT, manage histograms, handle bind peeking, apply dynamic sampling, and safely test changes with pending statistics.

DBMS_STATSDynamic SamplingESTIMATE_PERCENT
0 likes · 20 min read
Mastering Oracle Optimizer Statistics: When and How to Collect Them
dbaplus Community
dbaplus Community
Oct 24, 2016 · Databases

Why Oracle’s AUTO_SAMPLE_SIZE Misses Skewed Data and How to Fix It

The article explains how Oracle’s default DBMS_STATS.AUTO_SAMPLE_SIZE can produce wildly inaccurate cardinality estimates on highly skewed columns, examines the NewDensity and OldDensity algorithms, demonstrates the problem with real‑world examples, and offers practical solutions such as forcing estimate_percent or disabling NewDensity.

Auto Sample SizeDBMS_STATSDatabase Optimization
0 likes · 10 min read
Why Oracle’s AUTO_SAMPLE_SIZE Misses Skewed Data and How to Fix It
Baidu Intelligent Testing
Baidu Intelligent Testing
Oct 21, 2016 · Mobile Development

Baidu Mobile SDKs Overview: Statistics, Map, and Voice Integration Guide

This article provides a comprehensive guide to Baidu's mobile SDKs—including Statistics, Map (location), and Voice—detailing their features, platform-specific integration steps for Android and iOS, and sample code snippets for developers to implement analytics, precise positioning, and speech recognition in their apps.

AndroidBaiduiOS
0 likes · 9 min read
Baidu Mobile SDKs Overview: Statistics, Map, and Voice Integration Guide
ITPUB
ITPUB
Sep 27, 2016 · Databases

Mastering Oracle Statistics Collection: When, How, and What to Gather

This guide explains how to verify and configure Oracle's automatic optimizer statistics collection, customize collection windows, tailor statistics for large and partitioned tables, detect stale statistics, and decide when to gather histograms, providing practical SQL and PL/SQL examples.

DBMS_STATSHistogramsOracle
0 likes · 10 min read
Mastering Oracle Statistics Collection: When, How, and What to Gather
dbaplus Community
dbaplus Community
Aug 10, 2016 · Databases

How Oracle 12c Solves Batch‑Load Statistics Problems with Online Gathering

This article explains the classic Oracle batch‑processing issue caused by inaccurate statistics on tables with sharply changing row counts, reviews traditional mitigation methods and their drawbacks, and introduces Oracle 12c's online statistics gathering for bulk‑load as an automated solution while noting its current limitations.

12cBatch ProcessingDatabase Optimization
0 likes · 9 min read
How Oracle 12c Solves Batch‑Load Statistics Problems with Online Gathering
ITPUB
ITPUB
Jul 12, 2016 · Databases

Practical Guide to PostgreSQL Index Optimization and Cost Analysis

This article walks through practical steps for identifying performance bottlenecks in PostgreSQL, selecting appropriate columns and index types, interpreting system statistics, and evaluating cost estimates with real‑world examples to dramatically reduce query latency.

GiST indexPostgreSQLcost estimation
0 likes · 13 min read
Practical Guide to PostgreSQL Index Optimization and Cost Analysis
dbaplus Community
dbaplus Community
Apr 28, 2016 · Databases

Unlock Oracle 12c Optimizer: New Stats, Adaptive Features & Advanced Techniques

This article explores the major enhancements in Oracle 12c's optimizer, including session‑level statistics for global temporary tables, new DBMS_STATS reporting procedures, adaptive features, advanced join elimination methods, incremental and concurrent statistics collection, and automatic column‑group detection, providing practical guidance for DBAs and developers.

12cDBMS_STATSOracle
0 likes · 23 min read
Unlock Oracle 12c Optimizer: New Stats, Adaptive Features & Advanced Techniques
dbaplus Community
dbaplus Community
Apr 27, 2016 · Databases

Unlocking Oracle 12c Optimizer: Adaptive Query Optimization and New Statistics Features

This technical guide explores Oracle 12c's optimizer enhancements, covering adaptive query optimization, adaptive plans and join methods, hybrid hash distribution, dynamic and adaptive statistics, automatic re‑optimization, statistics feedback, new histogram types, and online statistics collection, with practical examples and visual illustrations.

Adaptive Query OptimizationDatabase PerformanceOracle
0 likes · 26 min read
Unlocking Oracle 12c Optimizer: Adaptive Query Optimization and New Statistics Features
Meiyou UED
Meiyou UED
Dec 1, 2015 · Fundamentals

Unlocking Insights: How Exploratory Factor Analysis Simplifies Complex Data

This article introduces exploratory factor analysis as a powerful dimensionality‑reduction method, explains its historical origins, describes its relationship to confirmatory factor analysis, and demonstrates its practical use in consumer‑value research by extracting four interpretable factors.

consumer researchdimensionality reductionexploratory factor analysis
0 likes · 4 min read
Unlocking Insights: How Exploratory Factor Analysis Simplifies Complex Data
ITPUB
ITPUB
Nov 27, 2015 · Databases

How to Build an Effective Oracle Statistics Collection Strategy for High‑Volume Systems

This article outlines practical strategies for Oracle DBAs to design, automate, and fine‑tune statistics‑gathering processes in large, high‑concurrency environments, covering automatic options, handling skewed data, partitioned tables, bind variables, and ongoing optimization cycles.

DBMS_STATSDatabase AdministrationPartitioning
0 likes · 10 min read
How to Build an Effective Oracle Statistics Collection Strategy for High‑Volume Systems
dbaplus Community
dbaplus Community
Oct 23, 2015 · Databases

How Oracle CBO Calculates Range Predicate Selectivity and Handles Strings

This article explains how Oracle's Cost‑Based Optimizer estimates the selectivity of range predicates without histograms, demonstrates calculations with sample data, shows PL/SQL code for converting string values to internal numbers, and discusses pitfalls such as identical internal values causing cardinality errors, offering solutions like gathering histograms or using DATE columns.

CBODatabase OptimizationOracle
0 likes · 8 min read
How Oracle CBO Calculates Range Predicate Selectivity and Handles Strings
ITPUB
ITPUB
Aug 28, 2014 · Databases

How Oracle DBAs Tackle Performance: Real‑World Stats Tuning and Career Insights

In this interview, veteran Oracle DBA Shi Yuedong shares his career journey, personal philosophy on opportunity, a hands‑on performance‑diagnosis case at Lenovo, experiments revealing Oracle 12.1's default statistics sampling rate, and thoughtful perspectives on big data versus data‑warehouse evolution.

DBAData WarehouseDatabase Performance
0 likes · 18 min read
How Oracle DBAs Tackle Performance: Real‑World Stats Tuning and Career Insights