julia-plots Questions

1

Solved

I just started to learn Julia in Quarto but when I run the following code in a Julia chunk in Quarto: --- title: "Julia in Quarto" editor: visual format: html --- ```{julia} # generating...
Belshin asked 18/12, 2022 at 9:57

2

Solved

How can I make the lines for the x- and y-axes thicker in Julia Plots? Is there a simple way to achieve this? MWE: using Plots Nx, Ny = 101,101 x = LinRange(0, 100, Nx) y = LinRange(0, 100, Ny) f...
Utilitarianism asked 27/11, 2021 at 9:33

2

Solved

I am looking for a function that does the following rending: f("2") = 2² f("15") = 2¹⁵ I tried f(s) = "2\^($s)" but this doesn't seem to be a valid exponent as I can'...
Dewhurst asked 22/12, 2021 at 15:44

2

Solved

I use Plots in Julia 1.5. How can I make the y-ticks as shown below? We sometime see figure with the right type of axis in scientific paper.
Hightest asked 31/1, 2021 at 8:32

1

Solved

I am using StatsPlots package to perform basic plotting. df = DataFrame(A = 1:10, B =rand(10)) @df df plot(:A, :B) it returns a plot file like below as I expected. Is there anyway I can save this...
Bradlybradman asked 19/7, 2020 at 14:13
1

© 2022 - 2024 — McMap. All rights reserved.