Questions tagged [pluto.jl]

More information:

32 questions
8
votes
1 answer

Print statement in Pluto.jl

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?
milkyway42
  • 144
  • 1
  • 6
6
votes
2 answers

Pluto.jl vs Jupyter 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/,…
Lennart
  • 73
  • 4
4
votes
1 answer

Julia Pluto cannot find dev installed package

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…
this_josh
  • 333
  • 2
  • 11
4
votes
1 answer

Using pluto.jl remotely

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.
Igor Rivin
  • 4,632
  • 2
  • 23
  • 35
4
votes
1 answer

Input Unicode characters in Pluto.jl

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…
imantha
  • 2,676
  • 4
  • 23
  • 46
4
votes
1 answer

Variable output in Pluto Notebook

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!
Fuzzy_Bunnys
  • 193
  • 8
3
votes
1 answer

Why does my Julia script not show plots in Pluto?

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()…
Eind997
  • 319
  • 1
  • 3
  • 9
3
votes
1 answer

Julia reporting an extra ) when it doesn't exist

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,…
Onur-Andros Ozbek
  • 2,998
  • 2
  • 29
  • 78
3
votes
1 answer

Using Gadfly interactively in Pluto

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…
Cm7F7Bb
  • 307
  • 2
  • 9
3
votes
1 answer

Can't install Packages in Julia

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
3
votes
2 answers

How to read an uploaded CSV file using Julia, Pluto.jl & PlutoUI.jl's FilePicker element

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…
2
votes
1 answer

How to install portable packages with Julia?

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…
rigel
  • 485
  • 1
  • 6
  • 12
2
votes
1 answer

How to find a Jacobian matrix of a vector function in Julia using "IntervalArithmetic.jl" 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),…
2
votes
2 answers

Is there a way to build dependent sliders with PlutoUI?

Is there a way to build dependent sliders with PlutoUI.jl in which adjusting one will dynamically change the others?
2
votes
0 answers

Histogram in Julia: Distributed.ProcessExitedException

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…
1
2 3