cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Browse apps to extend the software in the new JMP Marketplace
Choose Language Hide Translation Bar
hogi
Level XII

Nützliche Hilfsmittel zur explorativen Datenanalyse

Nützliche Hilfsmittel zur explorativen Datenanalyse
Dr. Holger Specht, Principal Engineer R&D - ams OSRAM Group

 

Wish List: https://community.jmp.com/t5/JMP-Wish-List/idb-p/jmp-wish-list

 

IMG_0801.jpg     IMG_0802.jpg

3 REPLIES 3
hogi
Level XII

Re: Nützliche Hilfsmittel zur explorativen Datenanalyse

AddIns which were presented in the talk:

*) flood script:

View more...
flood = Function({},

Try(:"neighbors_dir+diag"n<< get name(), Caption("can you tell me the direct and diagonal neighbors ?!?"); stop());
dt = current data table();
nr = n rows(dt = dt);

Try(:wall; dt << delete column(:wall));
new column("wall", Nominal, set each value(1));
:wall[1]=2;

dt << Graph Builder(
	Show Control Panel( 0 ),
	Variables( X( :X ), Y( :Y ), Color( :wall ) ),
	Elements( Points( X, Y, Legend( 4 ) ) )
);

wait(1);

dt << begin data update();


// mark additional pixels as wall "2" if the neighboring pixel belongs to wall 2 - swipe from top to bottom, then inverse - and so on ... for( i = 1, i<16, i++ , dt << begin data update(); for each ({rw}, 1::nr, if(rw>1, :wall[rw] = max(:wall[:"neighbors_dir+diag"n[rw]]))); for each ({rw}, reverse(1::nr), if(rw>1, :wall[rw] = max(:wall[:"neighbors_dir+diag"n[rw]]))); dt << end data update(); wait(0.1); ); )

 

hogi
Level XII

Re: Nützliche Hilfsmittel zur explorativen Datenanalyse

Graph builder remote control
once it's running smoothly, I will update Graph Builder Toolbar .
For beta testing, please use the attached version.


v5.1:
- bugfix for numeric columns

- help: explain the gui

hogi
Level XII

Re: Nützliche Hilfsmittel zur explorativen Datenanalyse