Web

Example 1

Summary: Launches web browser to a specific URL.

Code:

// Web
Web(
    "https://www.jmp.com/en/home"
);

Code Explanation:

  1. Open web browser.
  2. Navigate to URL.

Example 2

Summary: Opens a data table and joins it with another data table based on their unequal numbers of rows using the Join function.

Code:

// Web page
// Open data table
dt = Open("data_table.jmp");
// Web page
Web(
    "https://allisonhorst.github.io/palmerpenguins/"
);

Code Explanation:

  1. Open table.
  2. Access web page.

Example 3

Summary: Launches web browser to a specific URL.

Code:

// Source
Web(
    "https://archive.ics.uci.edu/ml/datasets/Cylinder+Bands"
);

Code Explanation:

  1. Open web page.
  2. Load dataset from URL.

Example 4

Summary: Joins two data tables with unequal numbers of rows using the Join function in JMP, allowing for flexible data manipulation and analysis.

Code:

// JMP Minute Videos
Web(
    "https://www.youtube.com/watch?v=Q7SRRUUkPD0&list=PLgjnRjSuvqgeeLK9fHr8i7bRhR_HWBySS"
);

Code Explanation:

  1. Open web browser.
  2. Navigate to YouTube URL.