I am trying to making print statement work in Pluto.jl. Right now when I execute println it prints to console, using PlutoUI extension to makes the print statement work but not in for loop.
Is there a way to print in for loop to Pluto.jl notebook?
What is the difference between Pluto.jl and Jupyter Notebooks?
How do I decide which I should prefer for teaching students?
Is there a performance difference?
I only found https://www.reddit.com/r/Julia/comments/kxdjzh/pluto_vs_jupyter_notebook/,…
I have my own Julia package called foo which is stored in /private/tmp/foo and looks like:
foo
├── Project.toml
└── src
└── foo.jl
I'd like to use it in an experiment I'm going to run. As such I
Create a new dir called bar for my…
I have recently started using Pluto.jl, and it is quite nice (and visually appealing). The question is: how do I set up a "pluto server", like the similar thing with jupyter. It must be easy, but I see no docs.
Just wondering if anyone knows how to add Unicode input in pluto.jl. For example, if I want to input a Unicode character for sigma, I would type \sigma in vs code, and the autocomplete will change it to σ. Any ideas how I could do the same in…
I'm in the process of working on a coding project in a pluto notebook. It's early days but I'm curious why the value of 1000 doesn't show beside quadorder in the screenshot above. It seems to output for everything else!
This is the code I'm trying to run
begin
for i in 1:10:100
display(Plots.plot(x[i:i+100]))
end
end
and this is the output I get
Plot{Plots.GRBackend() n=1}Plot{Plots.GRBackend() n=1}Plot{Plots.GRBackend() n=1}Plot{Plots.GRBackend()…
I have this for loop in Julia:
begin
countries_data_labels = ["Canada", "Italy", "China", "United States", "Spain"]
y_axis = DataFrame()
for country in countries_data_labels
new_dataframe = get_country(df,…
I am using Gadfly in Pluto and I am trying to figure out if it is possible to have interactive versions of the plots in Pluto notebooks. If I just use the REPL, Gadfly produces very nice interactive plots that are opened in my web browser:
using…
As the title says I can't seem to be able to install packages in Julia using Pluto anymore even though until a few days ago everything worked as it should.Error Code
I am attempting to use the Filepicker element of the PlutoUI library
md""" Upload a Comma Separated Values (.csv) file to use: $(@bind user_csv FilePicker()) """
to allow the user to upload a CSV file for processing. Unfortunately, the data type…
I have Julia 1.9.2 installed (current stable release) in a portable fashion. (The .zip file julialang.org offers). It's extracted to an external flash drive (E:\Julia-1.9.2\...) due to university computer restrictions. How do I install a package…
Could you please provide a solution for finding a Jacobian matrix for a vector function using the "IntervalArithmetic.jl" package in Julia? The function representation and the required Jacobian matrix is shown below.
f = [f1(x,y,z), f2(x,y,z),…
I'm running Julia 1.7.2 in a Pluto notebook on an M1 chip.
I have a vector of integers between 1 and 9, and would like to make a histogram showing which integers are most frequent.
I thought I had done this successfully by using Plots and then…