cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Semiconductor JMP Users Group Discussions

Choose Language Hide Translation Bar
hogi
Level XIII

collection of wishes with focus on "Semiconductor"

New features or bug fixes that help one user in one area might also help other users in the same area.

So I thought about creating a list of feature requests with a focus on Semiconductor.

Let's join forces to get them implemented as soon as possible : )

the idea:

  • a link - and maybe a short motivation here
  • to keep the list "slim", if you have any comments, please follow the link and comment in the original post

 

19 REPLIES 19
hogi
Level XIII

Re: collection of wishes with focus on "Semiconductor"

frustrated by I-V curves which look like this one?

hogi_0-1722405440600.png

vote here: Graph Builder: Line - possibility to add breaks 

hogi
Level XIII

Re: collection of wishes with focus on "Semiconductor"

hogi
Level XIII

Re: collection of wishes with focus on "Semiconductor"

BHarris
Level VII

Re: collection of wishes with focus on "Semiconductor"

Can you explain more about what changed with the GB CDF situation?

hogi
Level XIII

Re: collection of wishes with focus on "Semiconductor"

You are right, the original request is still open: a missing step at the lower left.
So, no possibility to close the wish.

On the other hand:

Concerning CDF/ Cumulative Probability in Graph Builder, most parts were available or were improved in JMP19.

- CDF was always there - for lines : just drag the variable onto the Y axis and activate Cumulative Percent.

- already there, but even more secret: use 1s on the Y axis to enable JMP to plot CDF plots  with points and smoother.

new:
- Pspline fit  + maximum value constraint = 1  for smoother:

hogi_1-1762813889870.png

 

 

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Graph Builder(
	Transform Column( "ones", Formula( 1 ) ),
	Variables( X( :height ), Y( :ones ) ),
	Elements(
		Points( X, Y, Legend( 5 ), Summary Statistic( "Cumulative Percent" ) ),
		Smoother(
			X,
			Y,
			Legend( 6 ),
			Summary Statistic( "Cumulative Percent" ),
			Method( "P-Spline" ),
			Maximum Constraint( 1 )
		),
		Line(
			X,
			Y,
			Legend( 7 ),
			Connection( "Step" ),
			Summary Statistic( "Cumulative Percent" )
		)
	)
);

 

 

even better: Scoping
This allows the user to generate grouped Cumulative Probability plots with a few mouse clicks.
Ones which are immune against mistakes of the users -  which show the right plot even with added Data Filter,  Overlay  and  Trellis plot design. No need to adjust the formula of the transfrom column.

hogi_0-1762813825378.png

Graph Builder(
	Transform Column(
		"age bins",
	
		Formula( If( :age <= 13, "<=13", ">13") )
	),
	Transform Column(
		"cumulative Prob",
		Formula(
			Col Rank( :height, :"@Exclude"n, :"@Filter"n, :"@Graph"n, :"@Overlay"n )
			 / (Col Number(
				:height,
				:"@Exclude"n,
				:"@Filter"n,
				:"@Graph"n,
				:"@Overlay"n
			) + 1)
		)
	),
	Variables(
		X( :height ),
		Y( :CumProb ),
		Wrap( :age bins ),
		Overlay( :sex )
	),
	Elements( Points( X, Y ), Line Of Fit( X, Y ) )
);


I am very happy with the new possibilities.