Nothing
knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
library(cardinalR) library(langevitour)
curvilinear_points <- curv_2d(n = 100, num_noise = 2, min_n = -0.05, max_n = 0.05) colnames(curvilinear_points) <- paste0("x", 1:NCOL(curvilinear_points)) langevitour(curvilinear_points, pointSize = 2)
nonlinear_points <- nonlinear_2d(n = 100, num_noise = 2, min_n = -0.05, max_n = 0.05) colnames(nonlinear_points) <- paste0("x", 1:NCOL(nonlinear_points)) langevitour(nonlinear_points, pointSize = 2)
sine_curve <- sine_curve(n = 100, num_noise = 2, min_n = -0.05, max_n = 0.05) colnames(sine_curve) <- paste0("x", 1:NCOL(sine_curve)) langevitour(sine_curve, pointSize = 2)
nonlinear_connect <- nonlinear_connect(n = 400, num_noise = 2, min_n = -0.05, max_n = 0.05) colnames(nonlinear_connect) <- paste0("x", 1:NCOL(nonlinear_connect)) langevitour(nonlinear_connect, pointSize = 2)
nonlinear_mirror <- nonlinear_mirror(n = 400, num_noise = 8, min_n = -0.05, max_n = 0.05) colnames(nonlinear_mirror) <- paste0("x", 1:NCOL(nonlinear_mirror)) langevitour(nonlinear_mirror, pointSize = 2)
two_curvy_panckakes <- two_curvy_panckakes(n = 300, num_noise = 2, min_n = -0.05, max_n = 0.05) colnames(two_curvy_panckakes) <- paste0("x", 1:NCOL(two_curvy_panckakes)) langevitour(two_curvy_panckakes, pointSize = 2)
curvy_data <- two_curvilinear(n = 600, num_noise = 2, min_n = -0.05, max_n = 0.05) colnames(curvy_data) <- paste0("x", 1:NCOL(curvy_data)) langevitour(curvy_data, pointSize = 2)
swiss_data <- swiss_roll(n = 200, num_noise = 2, min_n = -0.05, max_n = 0.05) colnames(swiss_data) <- paste0("x", 1:NCOL(swiss_data)) langevitour(swiss_data, pointSize = 2)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.