ParallelPlots
Documentation for ParallelPlots.
ParallelPlots.create_parallel_coordinates_plot — Methodcreate_parallel_coordinates_plot(data::DataFrame, normalize::Bool)- Julia version: 1.10.5
Constructors
ParallelPlots.create_parallel_coordinates_plot(data::DataFrame; normalize::Bool=false)Arguments
data::DataFrame:normalize::Bool:
Examples
julia> ParallelPlots.create_parallel_coordinates_plot(DataFrame(height=160:180,weight=60:80,age=20:40))
-
-# If you want to normalize the Data, you can add the value normalized=true, default is false
-julia> ParallelPlots.create_parallel_coordinates_plot(DataFrame(height=160:180,weight=reverse(60:80),age=20:40),normalize=true)
-
-