using JuliaDB, JuliaDBMeta, DataFrames, Gadfly
import Cairo
import Fontconfig
using Compose
group_data = JuliaDB.load("group_data")
test_plot = Gadfly.plot(
group_data |> DataFrame,
x = "Group",
y = "Differences",
Guide.xlabel("Group"),
Guide.ylabel("Value"),
Guide.yticks(ticks = collect(range(-1, 1, step = .2))),
Scale.x_discrete(levels = groups),
boxplot_theme,
Geom.boxplot
);
However after running this script I keep getting the following error: WARNING: both DataFrames and Iterators export "flatten"; uses of it in module Gadfly must be qualified
. How do I surpress Iterators.flatten for DataFrames.flatten within the Gadfly plot function.
Thanks for any help!