MathGroup Archive 2004

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Plot and axes

  • To: mathgroup at smc.vnet.net
  • Subject: [mg52217] Re: [mg52197] Plot and axes
  • From: "tgarza01 at prodigy.net.mx" <tgarza01 at prodigy.net.mx>
  • Date: Sun, 14 Nov 2004 20:15:22 -0500 (EST)
  • Reply-to: tgarza01 at prodigy.net.mx
  • Sender: owner-wri-mathgroup at wolfram.com

You can always define how the marks along the axes should appear in your
graph. Use Ticks:  

In[1]:=
coordaxes = 
Plot[0, {x, -4, 4}, PlotRange -> {-4, 4}, Frame -> False,
      Ticks->{Range[-4,4],Range[-4,4]}, 
GridLines -> Automatic, AspectRatio -> .9, ImageSize -> 400]; 

Tomas Garza
Mexico City

Original Message:
-----------------
From: Steven Shippee slshippee at comcast.net
To: mathgroup at smc.vnet.net
Subject: [mg52217] [mg52197] Plot and axes



I would like to get the marks on my "x" axis to show as '1, 2, 3, 4', just
like the "y" axis, but by default they show as '2,4' - is there an easy way
to find this in the help files?

coordaxes =
Plot[0, {x, -4, 4}, PlotRange -> {-4, 4}, Frame -> False,
GridLines -> Automatic, AspectRatio -> .9, ImageSize -> 400];

I did an
Options[Plot]

but could not figure out how to do it from there.

Thanks in advance,

Steven Shippee
slshippee at comcast.net


--------------------------------------------------------------------
mail2web - Check your email from the web at
http://mail2web.com/ .



  • Prev by Date: Re:Re: Counting Runs
  • Next by Date: Re: TraditionalForm of expressions WITHOUT evaluating.
  • Previous by thread: Re: Plot and axes
  • Next by thread: Re: Plot and axes