The Origin Forum
File Exchange
Try Origin for Free
The Origin Forum
Home | Profile | Register | Active Topics | Members | Search | FAQ | Send File to Tech support
 All Forums
 Origin Forum
 Origin Forum
 Draw the cumulative probability of grain size

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

Screensize:
UserName:
Password:
Anti-Spam Code:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkUpload FileInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
meomun_mdc Posted - 01/28/2016 : 07:13:23 AM
Dear all,
How can I draw the cumulative probability of 75 samples in 1 chart? For example of 1 sample:
2000 (micron): 4.7%
1000: 8.6%
500: 53.7 %
250: 99%
125: 99.8%
63: 100%
Someone can help me with that? Thank you very much.
1   L A T E S T    R E P L I E S    (Newest First)
Hideo Fujii Posted - 01/28/2016 : 4:59:45 PM
Hi,

It seems that your data has been already cumulative, so essentially you can simply make a plot from the data in every worksheet. Also, the X data is already sorted to be plotted in order.
Please try the following script. (You need to remove % from the Y column to be treated as numbers.)
//////////////////////////////////////////////////
%K=Graph2; //existing graph window name
doc -e LW {
  set col(1) -dc 1; //set 1st column for X as categorical;
  worksheet -a 1;   //add one column;
  plotxy (1,2) plot:=202 ogl:=[%K]1;
  //203=Column 202=Line+Symbol 201=Scatter 200=Line 
} 
layer -g; //to group plots 
//////////////////////////////////////////////////
In addition, Note that if you need to create individual graphs instead of adding plot into a single graph, you can use the Origin's Batch Plotting feature.
http://www.originlab.com/index.aspx?go=Products/Origin/91/BatchPlot

--Hideo Fujii
OriginLab

The Origin Forum © 2020 Originlab Corporation Go To Top Of Page
Snitz Forums 2000