Re: show only very second or third tick
- To: mathgroup at smc.vnet.net
- Subject: [mg61089] Re: show only very second or third tick
- From: "Jens-Peer Kuska" <kuska at informatik.uni-leipzig.de>
- Date: Mon, 10 Oct 2005 02:39:50 -0400 (EDT)
- Organization: Uni Leipzig
- References: <diaalj$ibn$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Hi,
data = Table[{x, Sin[x]}, {x, 0, Pi, Pi/2048}];
now we plot all, only every second, eight and 16th
data point:
ListPlot[First /@ Partition[data, #]] & /@ {1, 2,
8, 16}
Regards
Jens
"kristoph" <kristophs.post at web.de> schrieb im
Newsbeitrag news:diaalj$ibn$1 at smc.vnet.net...
| Is there a way to show only the second, third or
... tick in a plot,
| chart etc.? I unsed a Range[.] specification to
label some bars, but
| the data is very fine so the image looks to
crowed on the x-axes.
| Thanks for help.
|