'plot' creates a result in the remote process you have to fetch this result into the main process, the one which draws to screen like this:
result = @spawn plot(randn(100)) # do some stufff... # when ready to fetch fetch! fetch(result) This will display the plot...
