Some plotting options only allow view option. Is there another way to specify axes ranges?
In a BubblePlot, I want to display only a portion of the graph. view works fine for single graphs no problem, but when I combine it in display with multiple graphs I don't want the unviewed portions in Bubbleplot re-appearing.
for example
with(Statistics):
with(plots):
a := BubblePlot([4, 5, 2, 3], [1, 2, 7, 8], [8, 1, 3, 2],view=[default,4..9])
display(a,view=[default,0..9)
Now, a, plots the full set of data so when view is used again in display the unviewed portions in a are re-displayed which I don't want.
I could just remove the unwanted data, but is there a way I can do it at the plot level?
having x= and y= options in the BubblePlot would work great here but they appear not to be an option.