|
[Date Index]
[Thread Index]
[Author Index]
Re: Plot Lists of values from excel to mathematica
- To: mathgroup at smc.vnet.net
- Subject: [mg95343] Re: Plot Lists of values from excel to mathematica
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Fri, 16 Jan 2009 06:08:11 -0500 (EST)
- References: <gkn5it$igm$1@smc.vnet.net>
Hi,
do you mean
data = ImportString["1 5 2 4
2 6 1 2
3 2 2 1
4 1 7 2", "Table"];
ListPlot[Transpose[Drop[#, 1] & /@ data],Joined -> True]
??
Regards
Jens
dinodeblasio at gmail.com wrote:
> Hello everybody I'd like to plot in mathematica one four columns data
> that i have in excel, how i can do that in mathematica? For example I
> have:
> 1 5 2 4
> 2 6 1 2
> 3 2 2 1
> 4 1 7 2
>
> I'd like to have a plot wher on the x axis I have 1,2,3,4 and for the
> x=1 the point are at: 5,2,4; at x=2 the points are at 6,1,2 and so on.
> What is the simplest way to do that in mathematica?
> Thanks very much.
> Dino
>
Prev by Date:
Import MDB
Next by Date:
Re: Plot Lists of values from excel to mathematica
Previous by thread:
Re: Import MDB
Next by thread:
Re: Plot Lists of values from excel to mathematica
|