Re: Plotting Time Series
- To: mathgroup at smc.vnet.net
- Subject: [mg85918] Re: Plotting Time Series
- From: dh <dh at metrohm.ch>
- Date: Wed, 27 Feb 2008 04:35:00 -0500 (EST)
- References: <fq0ugl$kcn$1@smc.vnet.net>
Hi,
something like the following?
d={{"label1",0,0},{"label2",1,0},{"label3",0,1},{"label4",1,1},{"label5",.5,.5}};
labels=d[[All,1]];
dat=MapThread[Prepend,{d[[All,{2,3}]],Range[Length[d]]}];
ListPointPlot3D[dat,Ticks->{Transpose[{Range[Length[d]],labels}],Automatic,Automatic},PlotStyle->{PointSize[0.03]}]
hope this helps, Daniel
ouadad wrote:
> Is it possible to plot 3D time series where one axis is text, i.e., April-07, May-07, ...
>
> The file will be something like
> xyzdata={{Nov-07,1%,2%},{Dec-07,3%,4%}, ...
>