Hello Guys. I’m quite new to Julia Programming and i have a Question. I have a .csv file which i want to extract some datas from. My Code is working just fine in the REPL, but as soon as i try to run the same Code in VSC the plot won’t show, which it does in the REPL. The first issue was that i got the *(process:544): GLib-GIO-WARNING *: 09:39:19.482: Unexpectedly, UWP app 3138AweZip.AweZip_1.4.16.0_x86__ffd303wmbhcjt' (AUMId
3138AweZip.AweZip_ffd303wmbhcjt!App’) supports 167 extensions but has no verbs Error, but uninstalling BreeZip fixed that.
When i tried this Code: collection_threads.plot(x = :threadcreateddate, y = :number_of_threads, title = “Number of threads per day”)
collection_comments.plot(x = :commentcreateddate, y = :number_of_comments, title = “Number of comments per day”) i get this : ERROR: LoadError: ArgumentError: column name :plot not found in the data frame Error.
If i were to try and plot the function like this:
#plot(collection_threads.threadcreateddate, collection_threads.number_of_threads)
#plot(collection_comments.commentcreateddate, collection_comments.number_of_comments)
I don’t get any Error but a Warning that this is not a way to call the plot Function, which it actually is…
I enabled the Plot Pane in the Julia.Extension settings in VSC and don’t know what to do right now…
Can someone help? I need the code to run in VSC, because i want to compare the needed runtime and for various other purposes…