Skip to main content

Data Science Working Vocabulary

These terms describe the reasoning process. Tool names belong in implementation guides.

TermWorking meaning
QuestionThe decision, comparison, estimate, or explanation the analysis is meant to support.
ObservationOne recorded unit, event, or measurement in a dataset.
FeatureA measured or derived variable used as model input.
Target / labelThe outcome a supervised model is asked to predict.
PopulationThe full set of cases the conclusion is intended to describe.
SampleThe observed subset used to learn about that population.
SchemaThe names, types, constraints, and relationships that define the structure of stored data.
ProvenanceWhere data came from, how it was collected or transformed, and who is responsible for it.
BaselineA simple reference method that a more complex analysis should improve upon.
MetricA specified rule for measuring error, utility, fit, or another property of interest.
Training setData used to estimate model parameters.
Validation setData used during development to compare choices without fitting on the final test set.
Test setHeld-out data used for a final estimate of generalization under the chosen evaluation design.
Data leakageInformation reaches training or feature construction that would not legitimately be available when the model is used.
ConfounderA variable related to both an explanatory variable and an outcome that can distort a causal interpretation.
CalibrationAgreement between predicted probabilities and observed frequencies under a stated evaluation setting.
ReproducibilityAnother run can recover the analysis from recorded data, code, environment, parameters, and steps.

Words That Need Qualification

  • Average: name the statistic—mean, median, weighted mean, or something else.
  • Accuracy: name the metric and class distribution; accuracy alone can hide important errors.
  • Representative: state which population and sampling mechanism justify the claim.
  • Significant: distinguish statistical evidence from practical importance.
  • Correlation: do not silently turn association into a causal conclusion.

Prefer a precise sentence over a larger glossary. If a term cannot change how the work is performed or interpreted, it probably does not need a canonical definition here.