A list with parameters customizing group-TL-tsne layout
group_layout.default
An object of class list
of length 3.
# display all default settings
group_layout.default
#> $nbreaks_group
#> [1] 1
#>
#> $group_height
#> [1] 5
#>
#> $group_width
#> [1] 5
#>
# create a new settings object with n_neighbors set to 5
group_layout.custom = group_layout.default
group_layout.custom$group_height = 10
group_layout.custom
#> $nbreaks_group
#> [1] 1
#>
#> $group_height
#> [1] 10
#>
#> $group_width
#> [1] 5
#>