cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP 19 is here! See the new features at jmp.com/new.
  • Due to global connectivity issues impacting AWS Services, users may experience unexpected errors while attempting to authorize JMP. Please try again later or contact support@jmp.com to be notified once all issues are resolved.

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.