Web
Example 1
Summary: Launches web browser to a specific URL.
Code:
// Web
Web(
"https://www.jmp.com/en/home"
);
Code Explanation:
- Open web browser.
- 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:
- Open table.
- 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:
- Open web page.
- 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:
- Open web browser.
- Navigate to YouTube URL.