cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
jpol
Level IV

How to script the 'Make into Data Table' function under Graph Builder for wafermap image creation

Hi,

 

I am using the Map shape and Page functions of Graph Builder to create wafermaps of Test Measurement data. 

 

See example below:

 

wafermaps1.PNG

 

 After this I use the "Make into Data Table" function which gives me a  new table having a wafermap image for each  wafer ID.  

 

 

wafermaps2.PNG

 

 

These images are used  later as a mouseover Labels  in Time Series plots.

 

wafermaps3.PNG

 

 

 

I would like to script the task of making wafermaps into a data table  but unfirtunately there is no "Source" script in the Graph Builder Table apart  from Copy Table Script.

 

Is there a command within JSL that would enable me do this?

 

 

Thanks,

 

Philip

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
JesperJohansen
Level IV

Re: How to script the 'Make into Data Table' function under Graph Builder for wafermap image creat

I'm sorry, I think I didn't understand your issue entirely the first time. Try this:

1)

Make Graph, e.g.:

 

gb=Graph Builder(
Size( 534, 1454 ),
Show Control Panel( 0 ),
Graph Spacing( 3 ),
Variables( X( :X ), Y( :Y ), Page( :Z) ),
Elements( Points( X, Y, Legend( 9 ) ), Smoother( X, Y, Legend( 10 ) ) )
);

Note that i store the graph builder as "gb" to reference it easier later.

 

then use:

gb<< Make Into Data Table;

 

Hope this helps?

BR
Jesper

View solution in original post

5 REPLIES 5
JesperJohansen
Level IV

Re: How to script the 'Make into Data Table' function under Graph Builder for wafermap image creat

Try:

dt = Report( gb[1] )["Summary of Fit"][Table Box( 1 )] << Make Combined Data Table;

where the data table is aved as "dt", and the graph builder is saved as "gb". The script makes a report, looks for the 1st Table Box in "Summary of Fit"  (you would look for a different part) within saud report.

Hope it helps

BR
Jesper
jpol
Level IV

Re: How to script the 'Make into Data Table' function under Graph Builder for wafermap image creat

Hi Jesper,


Thank you for your reply.

Unfortunately I have been unable to script this action as I had hoped as I do not understand fully how your example script works.

I am still a newbie in the scripting arena.


In my case, using a data query script I have collected all the chip level data into a Data Table "Probe data".
 

I then construct the wafermaps using a Graph Builder script,


after which I manually run the "Make into Data Table" command from the Graph Builder pull down menu in order to get the wafermap images into a new data table , Graph Builder Table

 

Could you please explain how your proposed script  fits into these steps?

 

Thanks,

 

Philip

JesperJohansen
Level IV

Re: How to script the 'Make into Data Table' function under Graph Builder for wafermap image creat

I'm sorry, I think I didn't understand your issue entirely the first time. Try this:

1)

Make Graph, e.g.:

 

gb=Graph Builder(
Size( 534, 1454 ),
Show Control Panel( 0 ),
Graph Spacing( 3 ),
Variables( X( :X ), Y( :Y ), Page( :Z) ),
Elements( Points( X, Y, Legend( 9 ) ), Smoother( X, Y, Legend( 10 ) ) )
);

Note that i store the graph builder as "gb" to reference it easier later.

 

then use:

gb<< Make Into Data Table;

 

Hope this helps?

BR
Jesper
jpol
Level IV

Re: How to script the 'Make into Data Table' function under Graph Builder for wafermap image creat

Thanks Jesper,

 

This is exactly what I needed.

 

Best Regards,

 

Philip

hogi
Level XI

Re: How to script the 'Make into Data Table' function under Graph Builder for wafermap image creat

Hi, I really like the Make Into Data Table - it's sooo useful!

 

This time I have a Graph with columns used as GroupX, GroupY and Page.

How can I tell Jmp that I want a data table for each page - but nut for each subplot per GroupX/GroupY?