This function generates data with two linear clusters that are differentiated from each other, along with added noise.
Arguments
- n
The total number of data points to be generated.
- num_noise
The number of additional noise dimensions to be generated.
- min_n
The minimum value for the noise added to the data points.
- max_n
The maximum value for the noise added to the data points.
Examples
# Generate two linear differentiated clusters with noise with custom parameters
set.seed(20240412)
data <- two_long_clust_diff(
n = 300, num_noise = 2, min_n = -0.05,
max_n = 0.05
)