Hey Here I'm trying to setup patches (say white) on the last row ("min-pycor") with precentage 9-1 to blank (which means we have randomly 90% white patches on the last row and blank 10%). I did that. But the thing I don't know how to do is: how to create turtles randomly on the same row (min-pycor) on the blank. So everytime we setup the view we get on the row "min-pycor" random 90% white pathes and random 10% of turtle only on the blank. Thanks I got the answer but still there are some empty spaces between turtles and patches I couldn't get rid of
to setup
clear-all
ask patches [
if pycor = min-pycor [
ifelse random 10 <= 2
[set pcolor white]
[sprout 1 [set shape "square" set color blue] ]
] ]
reset-ticks
end