Getting Started

MIDAS is an exploratory data analysis tool that runs in your browser. No installation required - start analyzing right away.

Tutorial: Exploratory Data Analysis with the Iris Dataset

1. Open Sample Data

  1. When you open MIDAS, the launcher screen appears
  2. Click Iris dataset from the "Sample Data" section
  3. The project screen opens

Selecting Iris dataset from Sample Data section in MIDAS launcher

The Iris dataset contains measurements of petals and sepals from three species of iris flowers (150 rows × 5 columns).

2. Explore the Data

Three tabs open automatically:

  • Data Table (left): Displays data in tabular format
  • Statistics (top right): Shows statistics for the entire dataset
  • Selected Rows (bottom right): Details of selected rows

View Live Demo

Click to launch the MIDAS application

Each column header shows the data type (float64, string, etc.) and measurement scale (interval, nominal, etc.). Click the button at the right edge of a column to sort by that column.

MIDAS automatically infers data types and measurement scales when loading data. Measurement scales play an important role in statistical analysis and graph creation. See Data Preparation and Import for details.

3. View Basic Statistics

Let's check basic statistics to understand the data overview.

  1. Click a column name in the Data Table tab (e.g., sepal_length)
  2. Statistics automatically appear in the Statistics tab on the upper right

Basic statistics for sepal_length column in Statistics tab: numerical summary including mean, median, standard deviation

Statistics displayed:

  • Valid values: Number of valid data points
  • Missing values: Number of missing values
  • Mode: Most frequent value
  • Min: Minimum value
  • Max: Maximum value
  • Median: Median value
  • Mean: Average value
  • Std Dev: Standard deviation

A histogram and density curve are also displayed, allowing you to visually confirm the data distribution.

Histogram and density curve in Statistics tab: visualizing the distribution of sepal_length data

Select rows from histogram:

Click a bar in the histogram to select rows within that range. Details appear in the Selected Rows tab at the bottom right.

You can examine selected row data in detail or analyze only data within a specific range.

Selected row details in Selected Rows tab: row data from histogram selection displayed in tabular format

Select two columns to display a scatter plot:

  1. With sepal_length selected, Ctrl/Cmd+click sepal_width
  2. Scroll the Statistics tab to see a scatter plot of the two columns

Auto-generated scatter plot in Statistics tab: visualizing correlation between sepal_length and sepal_width, with correlation coefficient

The correlation coefficient (r value) is also displayed.

4. Create Graphs

Let's visualize the data to discover patterns.

Create a Scatter Plot

  1. Select AnalysisGraph Builder... from the menu bar
  2. Click the Scatter Plot button
  3. Select from the dropdowns:
    • X-Axis: sepal_length (interval) (sepal length)
    • Y-Axis: sepal_width (interval) (sepal width)
    • Color (Optional): species (nominal) (iris species)
  4. A scatter plot appears, color-coded by species

Scatter plot created in Graph Builder: sepal_length × sepal_width relationship color-coded by species

You can see that data clusters in different regions for each species.

See Creating Graphs and Advanced Graph Creation for more details.

5. Save Your Project

MIDAS offers two ways to save your work.

Save to Browser

  1. Select FileSave to Browser (or Ctrl/Cmd+S)
  2. The project is automatically saved to your browser

Next time you open MIDAS, saved projects appear in the "Quick Access" section of the launcher screen for quick resumption.

Export as File

  1. Select FileExport Project... (or Ctrl/Cmd+Shift+S)
  2. Confirm or edit the filename (defaults to project name)
  3. Click Save
  4. A project file (.mds format) is downloaded

Open an Exported File

  1. In the MIDAS launcher screen, click Choose File in the "Open Project File" section
  2. Select a saved .mds file
  3. The project loads and restores to its saved state

Related Pages