You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make two interleaving half circles. Sklearn interface to make_moons.
19
-
# Arguments
20
-
- `n_samples::Union{Tuple{Int, Int}, Int} = 100`: If int, the total number of points generated. If two-element tuple, number of points in each of two moons.
21
-
- `shuffle::Bool = true`: Whether to shuffle the samples.
22
-
- `noise::Union{Nothing, Float64} = nothing`: Standard deviation of Gaussian noise added to the data.
23
-
- `random_state::Union{Int, Nothing} = nothing`: Determines random number generation for dataset shuffling and noise.
Generate isotropic Gaussian blobs for clustering. Sklearn interface to make_blobs.
48
-
# Arguments
49
-
- `n_samples = 100`: If int, it is the total number of points equally divided among clusters. If array-like, each element of the sequence indicates the number of samples per cluster.
50
-
- `n_features = 2`: The number of features for each sample.
51
-
- `centers::Union{Int, Union{Nothing, Array{Float64, 2}}} = nothing`: The number of centers to generate, or the fixed center locations. If n_samples is an int and centers is None, 3 centers are generated. If n_samples is array-like, centers must be either None or an array of length equal to the length of n_samples.
52
-
- `cluster_std::Union{Float64, Array{Float64, 1}} = 1.0`: The standard deviation of the clusters.
53
-
- `center_box::Tuple{Float64, Float64} = (-10.0, 10.0)`: The bounding box for each cluster center when centers are generated at random.
54
-
- `shuffle::Bool = true`: Shuffle the samples.
55
-
- `random_state::Union{Int, Nothing} = nothing`: Determines random number generation for dataset shuffling and noise.
Generate an S curve dataset. Sklearn interface to make_s_curve.
83
-
# Arguments
84
-
- `n_samples::Int = 100`: The number of sample points on the S curve.
85
-
- `noise::Union{Nothing, Float64} = nothing`: Standard deviation of Gaussian noise added to the data.
86
-
- `random_state::Union{Int, Nothing} = nothing`: Determines random number generation for dataset creation. Pass an int for reproducible output across multiple function calls.
Make two interleaving half circles. Sklearn interface to make_moons.
7
+
# Arguments
8
+
- `n_samples::Union{Tuple{Int, Int}, Int} = 100`: If int, the total number of points generated. If two-element tuple, number of points in each of two moons.
9
+
- `shuffle::Bool = true`: Whether to shuffle the samples.
10
+
- `noise::Union{Nothing, Float64} = nothing`: Standard deviation of Gaussian noise added to the data.
11
+
- `random_state::Union{Int, Nothing} = nothing`: Determines random number generation for dataset shuffling and noise.
Generate isotropic Gaussian blobs for clustering. Sklearn interface to make_blobs.
36
+
# Arguments
37
+
- `n_samples = 100`: If int, it is the total number of points equally divided among clusters. If array-like, each element of the sequence indicates the number of samples per cluster.
38
+
- `n_features = 2`: The number of features for each sample.
39
+
- `centers::Union{Int, Union{Nothing, Array{Float64, 2}}} = nothing`: The number of centers to generate, or the fixed center locations. If n_samples is an int and centers is None, 3 centers are generated. If n_samples is array-like, centers must be either None or an array of length equal to the length of n_samples.
40
+
- `cluster_std::Union{Float64, Array{Float64, 1}} = 1.0`: The standard deviation of the clusters.
41
+
- `center_box::Tuple{Float64, Float64} = (-10.0, 10.0)`: The bounding box for each cluster center when centers are generated at random.
42
+
- `shuffle::Bool = true`: Shuffle the samples.
43
+
- `random_state::Union{Int, Nothing} = nothing`: Determines random number generation for dataset shuffling and noise.
Generate an S curve dataset. Sklearn interface to make_s_curve.
71
+
# Arguments
72
+
- `n_samples::Int = 100`: The number of sample points on the S curve.
73
+
- `noise::Union{Nothing, Float64} = nothing`: Standard deviation of Gaussian noise added to the data.
74
+
- `random_state::Union{Int, Nothing} = nothing`: Determines random number generation for dataset creation. Pass an int for reproducible output across multiple function calls.
0 commit comments