Skip to content

Commit cbc8904

Browse files
authored
Merge pull request #27 from moritz155/26-double-input-check
removed duplicate inputcheck
2 parents 6c762b1 + 6eef43d commit cbc8904

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ParallelPlots.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ julia> ParallelPlots.create_parallel_coordinates_plot( DataFrame(height=160:180,
6565
6666
"""
6767
function create_parallel_coordinates_plot(data::DataFrame; normalize::Bool=false, scene_width::Integer=800, scene_height::Integer=600)
68-
input_check(data)
69-
68+
69+
# check the given DataFrame
7070
input_check(data)
7171

7272
# Normalize the data if required

0 commit comments

Comments
 (0)