You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to make a GUI using Interact.jl and following the tutorial mentioned in their page but somehow seem to get stuck at using map! on a CSV.read operation for an observable type dataframe and a filepicker. I have the following code:
using CSV, DataFrames, Interact, Plots, _Blink_
loadbutton = filepicker()
data = Observable{Any}(DataFrame)
map!(CSV.read,data, loadbutton)
I get the following error: ArgumentError: provide a valid sink argument, like using DataFrames; CSV.read(source, DataFrame)
Any help will be greatly appreciated! _/_
The text was updated successfully, but these errors were encountered:
I am trying to make a GUI using Interact.jl and following the tutorial mentioned in their page but somehow seem to get stuck at using map! on a CSV.read operation for an observable type dataframe and a filepicker. I have the following code:
I get the following error:
ArgumentError: provide a valid sink argument, like
using DataFrames; CSV.read(source, DataFrame)
Any help will be greatly appreciated! _/_
The text was updated successfully, but these errors were encountered: