Dr. Juande Santander-Vela · @juandesant
552 followers · 6106 posts · Server astrodon.social

Then you can plot it with:

```import matplotlib.pyplot as plt
ax = plt.figure().add_subplot(projection='3d')
ax.plot(*w.T, lw=0.25, alpha=0.5)
plt.show()
```

#til #todayilearned #Python #numpy #randomwalk

Last updated 2 years ago

If I do a random walk on the Euclidean plane, and I look at the limiting case of n steps of length 1/n for n->inf , will the propability distribution of the end point be evenly distributed in the unit circle around the starting point?

#probability #math #randomwalk

Last updated 2 years ago

David Colburn · @colburn
210 followers · 466 posts · Server sfba.social

When you go for a hike but don't plan out a route first.

#oakland #randomwalk #gooutside

Last updated 2 years ago

Alo Japan · @alojapan
29 followers · 1990 posts · Server masto.ai
· @xpil
703 followers · 5470 posts · Server fosstodon.org

Random walks on the 2d plane are really my thing. Here's a short writeup of my recent adventure with prime numbers and random walks: xpil.eu/prime-walks/

#python #primes #randomwalk

Last updated 2 years ago

I have posted on before but I am now showing how easy it is to combine some functionality out of the box from my {TidyDensity} to see multiple random walks of the same but with different parameters.

Post: spsanderson.com/steveondata/po

#RStats #timeseries #biology #markets #Finance #economics #random #randomwalk #distribution #package #r #randomwalks

Last updated 2 years ago

Simon L Rydin Myerson · @simonmyerson
43 followers · 173 posts · Server mathstodon.xyz

I should really remember to recommend this, it's a very nice introduction to one of the central ideas in my area

awwalker.com/2017/09/01/the-ph

(assumes a bunch of ideas about arithmetic functions and characters and so on, someone would probably need to have taken a couple of number theory courses to follow it)

#randomwalk #probability #numbertheory

Last updated 2 years ago

Random walks have a wide range of applications, including modeling the movement of stock prices, animal migration, and the spread of infectious diseases. They are also a fundamental concept in and , and have been studied extensively in the literature.

I have written a new that goes over how to the for the and how to it.

Post: spsanderson.com/steveondata/po

#Physics #movement #random #timeseriesanalysis #timeseries #visualize #randomwalk #Data #generate #blogpost #statistics #Probability

Last updated 2 years ago

Moritz Schauer · @Moritz
138 followers · 35 posts · Server fediscience.org

Let's do a beautiful It starts at a lake and in a moment raindrops will fall making little ripples

#randomwalk #science

Last updated 2 years ago

Alex M. Dunne (he/him) Seattle · @alexmdunne
93 followers · 150 posts · Server mas.to

question:

Q: How to follow entire topic-based lists of users on @mastodon -v- finding & following individual accounts?

Context: I'd prefer to follow 5k people quickly and then prune & tune slowly in parallel with the slower discovery of individual voices...

#randomwalk #followfriday

Last updated 2 years ago

Rythur · @rythur
109 followers · 1163 posts · Server mastodon.social

Everyone should find the time to just take a road. I don't mean trespassing on a master's land. I mean taking some random public road as far as your will feels, without knowing where it goes. I've seen many animals by doing this. Many things, man-made and not-so-man-made. Some might consider this a waste of time, so to you, I call to consideration the reflection and pure thought that takes place on such walks. These things are not without value.

#randomwalk #nature #hiking #alwaysthinking

Last updated 2 years ago

· @xpil
606 followers · 4866 posts · Server fosstodon.org

Just for fun. Less than 30 lines of Python code generating random walk path that does not cross itself, until it reaches 5000 steps or gets stuck.

Walk takes place on an infinite rectangular grid. Each step is one unit (either horizontally, vertically or diagonally).

#python #random #randomwalk

Last updated 4 years ago