How to Plot in Julia

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 ธ.ค. 2024

ความคิดเห็น • 32

  • @evaldosilva786
    @evaldosilva786 หลายเดือนก่อน +1

    Great video. It worked very well in my computer
    I'l see your other videos.

    • @Numeryst
      @Numeryst  หลายเดือนก่อน

      Glad it helped!

  • @metaDeWeta
    @metaDeWeta 11 หลายเดือนก่อน

    Very good tutorial, thank you!

    • @Numeryst
      @Numeryst  11 หลายเดือนก่อน +1

      Glad you enjoyed it!

  • @martinsanchez-hw4fi
    @martinsanchez-hw4fi 2 หลายเดือนก่อน +1

    What do you do if VScode does not display any image when using Plots?

    • @Numeryst
      @Numeryst  2 หลายเดือนก่อน +1

      There could be several possible reasons, I mention the most probable ones:
      1. When running scripts, explicitly call display() on your plot object. For example:
      using Plots
      p = plot(1:10, rand(10))
      display(p)
      2. Try Different Backends.
      3. Restart VSCode.
      4. Ensure Plot Pane is Enabled:
      Go to the settings in VSCode and make sure that the "Use Plot Pane" option is enabled. This setting allows plots to be displayed directly within the VSCode interface.
      5. Start Julia REPL Correctly:
      Make sure to start Julia using the command Julia: Start REPL from the command palette (Ctrl+Shift+P). Starting it manually from a terminal may not integrate properly with VSCode.

  • @rosenrotcoyohuehuetzin7802
    @rosenrotcoyohuehuetzin7802 3 หลายเดือนก่อน +1

    Helpful video. There´s a way I can convert a plot into an image and download it as PNG or JPG?

    • @Numeryst
      @Numeryst  3 หลายเดือนก่อน

      Yes, you can use "savefig" function.

  • @edinetgrunhed6000
    @edinetgrunhed6000 10 หลายเดือนก่อน

    thanks for this video, is it possible to make Gauge using this lib?

    • @Numeryst
      @Numeryst  10 หลายเดือนก่อน

      By Gauge, are you referring to Gauge charts?

    • @edinetgrunhed6000
      @edinetgrunhed6000 9 หลายเดือนก่อน

      with the same library which you are using is it possible to make gauge visualization? or gauge still not supported?@@Numeryst

    • @Numeryst
      @Numeryst  9 หลายเดือนก่อน

      Plots.jl doesn't have a dedicated gauge chart function, you can achieve similar visualizations with some creativity and its core plotting functionalities.

  • @NamasenITN
    @NamasenITN 3 หลายเดือนก่อน

    Why doesn't the figure fill the entire width of the plot pane of VSCode?

    • @Numeryst
      @Numeryst  3 หลายเดือนก่อน +1

      You should specify figure size and whether you keep the aspect ratio fixed or not.

    • @NamasenITN
      @NamasenITN 3 หลายเดือนก่อน

      @@Numeryst Thank you and thanks for the video series on Julia.

    • @Numeryst
      @Numeryst  3 หลายเดือนก่อน

      @@NamasenITN You're welcome!

  • @robertlove2168
    @robertlove2168 9 หลายเดือนก่อน

    Why do you need vscode? Won't any terminal do?

    • @Numeryst
      @Numeryst  9 หลายเดือนก่อน

      You can use terminal but that depends on your goals and what you are comfortable with!

  • @mauricehietkampmh
    @mauricehietkampmh 11 หลายเดือนก่อน

    Do you have a list of what extensions you are using?

    • @Numeryst
      @Numeryst  11 หลายเดือนก่อน

      For VSCode? For VSCode, I only use Julia VSCode extension.

  • @soyuz3352
    @soyuz3352 11 หลายเดือนก่อน

    Where could i learn Julia

    • @Numeryst
      @Numeryst  11 หลายเดือนก่อน

      Here is the link:
      th-cam.com/play/PLLlTVphLQsuM7pZgoQym3VxIbqnz-Uxna.html

    • @soyuz3352
      @soyuz3352 11 หลายเดือนก่อน

      Thank you

    • @Numeryst
      @Numeryst  11 หลายเดือนก่อน

      @@soyuz3352 You're welcome!

  • @olmzy5812
    @olmzy5812 2 หลายเดือนก่อน

    video is nice, but I copied 3D plot script and it didn`t work :(

    • @Numeryst
      @Numeryst  2 หลายเดือนก่อน

      You probably have not imported the packages properly. I have run the code in the video!

  • @pettymanny6487
    @pettymanny6487 8 หลายเดือนก่อน +1

    Looks simpler than matplotlib.

    • @Numeryst
      @Numeryst  8 หลายเดือนก่อน

      Yes, indeed, it is simpler!