How to Plot in Julia

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

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

  • @martinsanchez-hw4fi
    @martinsanchez-hw4fi 15 วันที่ผ่านมา +1

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

    • @Numeryst
      @Numeryst  14 วันที่ผ่านมา +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 2 หลายเดือนก่อน +1

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

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

      Yes, you can use "savefig" function.

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

    Very good tutorial, thank you!

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

      Glad you enjoyed it!

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

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

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

      By Gauge, are you referring to Gauge charts?

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

      @@NamasenITN You're welcome!

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

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

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

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

  • @olmzy5812
    @olmzy5812 29 วันที่ผ่านมา

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

    • @Numeryst
      @Numeryst  29 วันที่ผ่านมา

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

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

    Where could i learn Julia

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

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

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

      Thank you

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

      @@soyuz3352 You're welcome!

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

    Looks simpler than matplotlib.

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

      Yes, indeed, it is simpler!