Group Abstract Group Abstract

Message Boards Message Boards

0
|
3.5K Views
|
2 Replies
|
0 Total Likes
View groups...
Share
Share this post:

Ploting two sets of data in terms of each other

Dear friends I have imported two sets of data separately from two Excels file,

EnergyDensity2 = Import["C:\\Users\\User\\Desktop\\energy dm.xlsx", {"Data", 1, All, 
1}];

Pressure2 = Import["C:\\Users\\User\\Desktop\\pressure dm.xlsx", {"Data", 1, 
All, 1}];

then I want to plot them in terms of each other in a two dimensional plot. In fact in a x-y Plot, for instance Pressure2 as y axis and Energydensity2 as x axis. Numbers of data for both of them is 1000.

POSTED BY: Davood Rafiei
2 Replies
Posted 6 years ago

Perhaps

EnergyDensity2={1,2,5,4,8};
Pressure2={4,7,9,10,11};
ListPlot[Transpose[{EnergyDensity2,Pressure2}]]
POSTED BY: Bill Nelson

Thanks the problem is solved.

POSTED BY: Davood Rafiei
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard