# Are there any interesting visualization examples in Julia？

**URL:** https://discourse.julialang.org/t/are-there-any-interesting-visualization-examples-in-julia/62661
**Category:** Visualization
**Created:** [June 10, 2021, 8:07am UTC](https://discourse.julialang.org/t/are-there-any-interesting-visualization-examples-in-julia/62661 "2021-06-10T08:07:28Z")
**Posts on this page:** 1
**Showing post:** 5

<div class="post-metadata">

### Author: ![lmiq](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/lmiq/32/18314_2.png) [@lmiq](https://discourse.julialang.org/u/lmiq)
#### Post date: [June 10, 2021, 1:24pm UTC](https://discourse.julialang.org/t/are-there-any-interesting-visualization-examples-in-julia/62661/5 "2021-06-10T13:24:31Z")

</div>

> [@Seven Lines of Julia (examples sought)](https://discourse.julialang.org/t/seven-lines-of-julia-examples-sought/50416/45):
>
> @FedericoStra, found interesting to perform a zoom-in loop and recompute your fractal and to use animated gif technique shown by @lmiq to create: [mandelbrot\_zooms] xc, yc = -0.55, 0.61; x0, x1 = xc - 2, xc + 2; y0, y1 = yc - 2, yc + 2; anim = @animate for t in 1:50 x, y = range(x0, x1; length=1000), range(y0, y1; length=1000) heatmap(x, y, -log.(mandelbrot.(x' .+ y .\* im));aspect\_ratio=1,border=:none,legend=:none); x0, x1 = (15x0 + x1)/16, (15x1 + x0)/16; y0, y1 = (15y0 + y1)/16…

There are other cool examples in that thread.

---

_[View the full topic](https://discourse.julialang.org/t/are-there-any-interesting-visualization-examples-in-julia/62661)._
