MathGroup Archive 2011

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

Search the Archive

Re: Change x-axis scale

  • To: mathgroup at smc.vnet.net
  • Subject: [mg123594] Re: Change x-axis scale
  • From: Bob Hanlon <hanlonr357 at gmail.com>
  • Date: Mon, 12 Dec 2011 06:44:44 -0500 (EST)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • References: <201112110849.DAA29685@smc.vnet.net>

Plot[PDF[NormalDistribution[0, 1], x], {x, -4, 4},
 Axes -> {True, False},
 Ticks -> {Range[-4, 4, 1], Automatic}]

Plot[PDF[NormalDistribution[0, 1], x], {x, -4, 4},
 Axes -> {True, False},
 Ticks -> {
   Join[
    Table[{n, ""}, {n, -3.5, 3.5, 1}],
    Table[{n, n}, {n, -4, 4, 1}]],
   Automatic}]


Bob Hanlon

On Sun, Dec 11, 2011 at 3:49 AM, Scott Colwell <srcolwell at gmail.com> wrote:
> Hi There,
>
> I have been looking for about two hours for how to change the x-axis in the following plot of a normal distribution.  I must be going blind because I can't find it.
>
> Plot[PDF[NormalDistribution[0, 1], x], {x, -4, 4},
>  Axes -> {True, False}]
>
> This plots the x-axis with -4, -2, 0, 2, 4
>
> What I want is the scale to go from -4 to 4 by 1,
> so -4, -3, -2, -1, 0, 1, 2, 3, 4
>
> Could someone please give me a hand with this.
>
> Thanks,
>



  • Prev by Date: Re: Crashing problem with 3d IFS program
  • Next by Date: Problem with InputField
  • Previous by thread: Re: Change x-axis scale
  • Next by thread: Re: Change x-axis scale