Re: Changing Plot Axis Displays
- To: mathgroup at smc.vnet.net
- Subject: [mg54755] Re: [mg54694] Changing Plot Axis Displays
- From: "Owen, HL \(Hywel\)" <h.l.owen at dl.ac.uk>
- Date: Tue, 1 Mar 2005 01:58:11 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
- Thread-index: AcUcnO58VGQSGFArSquG48rbSgyJ8gA2WESQ
See Help on Ticks, e.g. an option in ListPlot3D such as: Ticks->{{{1,"A"},{2,"B"},{3,"C"},{4,"D"}},Automatic,Automatic} Hywel > -----Original Message----- > From: plizak [mailto:plizak at gmail.com] To: mathgroup at smc.vnet.net > Sent: 27 February 2005 06:29 > To: mathgroup at smc.vnet.net > Subject: [mg54755] [mg54694] Changing Plot Axis Displays > > > > I have a table that I want to plot, it's a list plot > > A = {{.1,.2,.3,.4,.5} > {.1,.2,.3,.4,.6} > {.1,.2,.3,.5,.7} > {.1,.2,.5,.6,.8} } > > ListPlot3D[A, AxesLabel->{"Years", "Ratings", "rates"} > > Q: I would like the "Ratings" axis to not be numbers 1,2,3 > and 4, but rather A, B, C, and D. Is this possible in > mathematica? > > Q: Can I change the "rates" to be in Percent? i.e instead of > having the Z axis from 0 to 0.80, could I have the Z axis > go from 0% to 80%? > > Q: Can I offset the "Years" to be 5, 10, 15 and 20 as opposed > to 1,2,3 and 4? > > > > Range, Ranges, ListPlot > > >