cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

JMP Wish List

We want to hear your ideas for improving JMP. Share them here.
Choose Language Hide Translation Bar

Table summary: enable/disable multiple response

☑ cool new feature
☐ could help many users!

☐ removes a „bug“

☐ nice to have

☐ nobody needs it

 

 

In the Table summary menu, for tables with modeling type multiple response, please provide a checkbox to use/not use the multiple response.

 

At the moment, the below code generates a summary table like this:

hogi_0-1670589445019.png

 

such a table could make sense /how many students have 2 and more sports activities?)

But with the checkbox, the user could decide if he perfers the first table or a summary table which analyzeds and groups the multiple response entries (like GraphBuilder would do in Jmp 17):

hogi_1-1670589560031.png


On the other hand: 

I am quite happy that Summarylists multiple response columns (although it doesn't use the information).

[much worse: tabulate doesn't even list such columns:
https://community.jmp.com/t5/JMP-Wish-List/enable-quot-tabulate-quot-support-for-columns-with-modeli...

 

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Column( "sports",
	Character,
	"Multiple Response",
	Set Selected,
	Set Values(
		{"", "running", "", "tennis", "tennis", "tennis, football",
		"tennis, running", "", "", "football", "running", "", "tennis", "",
		"football", "running", "tennis", "", "", "tennis", "", "football, running",
		"running", "running", "running", "running", "", "tennis", "", "football",
		"football", "tennis, football, running", "football", "tennis, football",
		"running", "", "", "", "football", ""}
	)
);
Data Table( "Big Class" ) << Summary(
	Group( :sex ),
	N,
	Subgroup( :sports ),
	Freq( "None" ),
	Weight( "None" )
);

 

 

 

 

more wishes submitted by  hogi_2-1702196401638.png

1 Comment
Status changed to: Acknowledged

Hi @hogi, thank you for your suggestion! We have captured your request and will take it under consideration.