forked from moritz155/ParallelPlots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_log_scale.jl
42 lines (35 loc) · 1.23 KB
/
test_log_scale.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using ParallelPlots:parallelplot
using Test: @test, @testset
using CairoMakie: save
@testset "default call log scaled" begin
# create log2 data for easy visual check
df = create_log_df(2)
fig = parallelplot(df, curve=true,
feature_selection=["height","age","income"],
scale=[log2, identity, log2]
)
@test fig !== nothing
save("parallel_coordinates_plot_logScaled_2.png", fig)
# create log10 data for easy visual check
df = create_log_df(10)
fig = parallelplot(df,
scale=[log10, identity, log10],
feature_selection=["height","age","income"],
)
@test fig !== nothing
save("parallel_coordinates_plot_log_10.png", fig)
# length of scale attributes does not fit the length of the axis/features
@test_throws AssertionError begin
fig = parallelplot(df,
scale=[log10, identity, log10],
feature_selection=["height","weight","age","income"],
)
end
# length of scale attributes does not fit the length of the axis/features
@test_throws ArgumentError begin
fig = parallelplot(df,
scale=[log10, identity, log10, sqrt],
feature_selection=["height","weight","age","income"],
)
end
end