Re: [R] simple plotting question

2010-12-13 Thread Anthony Damico
to add to Michael's response: http://www.statmethods.net/advgraphs/parameters.html On Mon, Dec 13, 2010 at 2:23 AM, Michael Bedward wrote: > Hello Erin, > > Try this... > > plot(x, y, type="b", pch=16) > > Michael > > On 13 December 2010 18:11, Erin Hodgess wrote: >> Dear R People: >> >> When

Re: [R] simple plotting question

2010-12-12 Thread Michael Bedward
Hello Erin, Try this... plot(x, y, type="b", pch=16) Michael On 13 December 2010 18:11, Erin Hodgess wrote: > Dear R People: > > When I plot using type="b", I have circles and lines, which is as it should > be. > > Is there a way to have filled in circles using the type argument, > please?  O

Re: [R] Simple plotting question

2008-10-27 Thread Greg Snow
Creating your own plot from scratch will probably not be that hard. You can plot using type='n' to set up the plot. Then the symbols function will plot squares or rectangles with the length of the sides specified by you. The segments function can then add the lines. If you want a shape that