Plotting three column pairs from imported data in Mathematica

  • Context: Mathematica 
  • Thread starter Thread starter Moonshine
  • Start date Start date
  • Tags Tags
    Mathematica Plotting
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 2K views
Moonshine
Messages
31
Reaction score
0
I have some data I imported into Mathematica. It has three columns. I want to plot col1 vs. col2, col2 vs. col3, and col1 vs. col3.

I started out doing this

Flatten[Partition[data, 3]]

to get one long list. I'm kind of lost. Any help is appreciated!
 
Physics news on Phys.org
Nevermind, I figured out you could do this almost immediately after posting that

column1 = Table[data[[i, 1]], {i, 1, Length[data]}]