cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Use World Cup data to build models, explore spatial relationships, and create informative visualizations in JMP. Register. July 17, 2 pm US Eastern Time.
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

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.