Skip to content
Learn Netverks

Lesson

Step 6/36 17% through track

types-of-data

Types of data

Last reviewed Jun 1, 2026 Content v20260601
Track mode
server_script
Means
Server runner
Reading
~1 min
Level
beginner

This lesson

This lesson teaches Types of data: the data science mindset, methods, and communication habits behind evidence-based decisions.

Teams apply Types of data in every serious Data Science project—skipping it leaves blind spots in analysis and reviews.

You will apply Types of data in contexts like: Analytics teams, product experimentation, research labs, and ML-adjacent engineering in every data-driven company.

Read the narrative, run Python in the playground (stdlib snippets now; install Jupyter, pandas, and scikit-learn locally for full notebooks), and complete MCQs to lock in vocabulary.

When you can explain the previous lesson's ideas in your own words.

Data types drive which summaries and models are valid: numeric (continuous vs discrete), categorical (nominal vs ordinal), text, datetime, and boolean.

Numeric

  • Continuous — height, revenue (meaningful fractions)
  • Discrete — page views, item counts (integers)

Do not treat IDs as continuous numbers—user_id=10002 is not “twice” user_id=5001.

Categorical

  • Nominal — country, product SKU (no natural order)
  • Ordinal — survey Likert scales (ordered categories)

Datetime and text

Parse dates explicitly—timezone bugs break joins. Text needs tokenization or embeddings for modeling; start with counts and keywords in exploration.

Important interview questions and answers

  1. Q: Nominal vs ordinal?
    A: Nominal has no order; ordinal ranks categories.
  2. Q: Why not model user_id as numeric?
    A: IDs are labels, not measurements.

Self-check

  1. Give one nominal and one ordinal example.
  2. Why are IDs not continuous?

Pitfall: Treating user IDs as numeric features.

Interview prep

Nominal?

Categories without meaningful order.

ID as numeric?

Invalid—IDs are labels.

Interview tip Lesson completion confidence

Can you explain this lesson in 30 seconds without reading notes?

Not saved yet.

Playground

Runs on the configured server runner (dev: npm run runner with LEARNING_RUNNER_ENABLED=true). Output appears below the editor.

Check yourself

Multiple choice — immediate feedback.

Discussion

Past discussion is visible to everyone. Only logged-in users can post comments and replies.

Starter discussion topics

  • Nominal example?
  • ID as numeric?

Sign up or log in to post comments and sync lesson progress across devices.

No discussion yet. Be the first to ask a question.

Jump