Intro to Data Visualization
  • Introduction
  • Getting started
    • Introduction to Pandas
    • Accessing Files on Colab
    • Reviewing Data
      • Understanding type(data) in Pandas
    • Data Types
      • Categorical Data
      • Numeric Data
      • Temporal Data
      • Geographic Data
    • How to Check Data Type
    • Slicing and Subsetting DataFrames
    • Aggregating Data
  • Visualization Types
    • Exploratory Process
    • Explanatory Process
  • data exploration
    • Exploration Overview
    • Exploration with Plotly
      • Exploring Distributions
      • Exploring Relationships
      • Exploring with Regression Plots
      • Exploring Correlations
      • Exploring Categories
      • Exploring Time Series
      • Exploring Stocks with Candlestick
      • Exploring with Facets
      • Exploring with Subplots
    • Exploring with AI
  • Data Explanation
    • Data Explanation with Plotly
      • Using Text
      • Using Annotations
      • Using Color
      • Using Shape
      • Accessibility
      • Using Animations
    • Use Cases
  • Exercises and examples
    • Stock Market
      • Loading Yahoo! Finance Data
      • Use Cases for YF
      • Exploring YF Data
      • Understanding Boeing Data Over Time
      • Polishing the visualization
      • Analyzing with AI
      • Comparisons
    • The Gapminder Dataset
      • Loading the Gapminder Data
      • Use Cases
      • Exploring the Data
      • Exporting a Static Image
Powered by GitBook
On this page
  1. Getting started
  2. Data Types

Numeric Data

Numerical data represents measurable quantities and consists of numbers that can be used for arithmetic operations. It is typically divided into two types: discrete and continuous. Discrete numerical data includes countable values, such as the number of customers visiting a store, while continuous numerical data can take any value within a range, such as height, weight, or temperature. Numerical data is the backbone of quantitative analysis, enabling statistical computations, modeling, and visualization. Common techniques for analyzing numerical data include calculating summary statistics (mean, median, standard deviation), visualizing distributions with histograms or box plots, and identifying relationships using scatter plots. In Python, libraries like pandas and NumPy handle numerical data efficiently, while tools such as Matplotlib, Seaborn, and Plotly help create insightful visualizations. Properly understanding, cleaning, and processing numerical data is crucial for extracting patterns, identifying trends, and making data-driven decisions.


Code Example

How it appears in Pandas:

data = {
    'Values': [100, 200, 300]
}

df = pd.DataFrame(data)
print(df)

Output:

   Values
0     100
1     200
2     300
PreviousCategorical DataNextTemporal Data

Last updated 3 months ago