autoload dataframes
This commit is contained in:
parent
443df0501d
commit
a027fdded7
@ -275,6 +275,9 @@ function buildReadme()
|
|||||||
f = open(readme_fn, "w")
|
f = open(readme_fn, "w")
|
||||||
write(f, readme)
|
write(f, readme)
|
||||||
close(f)
|
close(f)
|
||||||
|
|
||||||
|
gadfly()
|
||||||
|
Plots.dumpSupportGraphs()
|
||||||
end
|
end
|
||||||
|
|
||||||
# run it!
|
# run it!
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -190,6 +190,12 @@ Base.display(::Base.REPL.REPLDisplay, ::MIME"text/plain", plt::PlottingObject) =
|
|||||||
function __init__()
|
function __init__()
|
||||||
global const CURRENT_BACKEND = pickDefaultBackend()
|
global const CURRENT_BACKEND = pickDefaultBackend()
|
||||||
println("[Plots.jl] Default backend: ", CURRENT_BACKEND.sym)
|
println("[Plots.jl] Default backend: ", CURRENT_BACKEND.sym)
|
||||||
|
|
||||||
|
# auto init dataframes if the import statement doesn't error out
|
||||||
|
try
|
||||||
|
@eval import DataFrames
|
||||||
|
dataframes()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# ---------------------------------------------------------
|
# ---------------------------------------------------------
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user