cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Get the free JMP Student Edition for qualified students and instructors at degree granting institutions.
Choose Language Hide Translation Bar
View Original Published Thread

How do I graph multiple response columns correctly?

thurnay_s
Level I

Hi,

I have a table looking at how users return to a product over time. I can do this in columns for each week, error bars for each column - perfect.

I now want to look at subgroups of users that did or didn't do a specifc activity. I use the activity as an overlay, again no problem.

 

But now I'd like to compare different activities - which one(s) help most to boost retention.

I've created a single column that reports all of the activities as multiple response  - most people only have one, but a few have several activities. When I use this variable in a graph, I get a seperate group for each possible combination - useless. I need a group for each activity, and yes, the groups will overlap, i.e. the same person show up multiple times.

the best i can do is create a dashboard that shows the individual graphs side by side, but that's still awkward to compare. I want just the "yes" bars together in one graph...

 

Any idea how I could do this?

 

Thanks!

 

Susanne

1 ACCEPTED SOLUTION

Accepted Solutions
dale_lehman
Level VII


Re: How do I graph multiple response columns correctly?

I'm not sure if this is what you are looking for, but I stacked the activity columns and it seems to be able to show the number of people engaged in each activity (even with overlaps).  I believe stacking those columns is what you want to do. See attached (and script for an initial graph).

View solution in original post

2 REPLIES 2
melinda_thielba
Staff (Retired)


Re: How do I graph multiple response columns correctly?

Hi, Susanne!

There are some automatic charts in the Categorical platform that might help you out. Here's a script with some basic ideas:

Categorical(
	Grouping Option( Both ),
	X( :Week, :Name( "Returned?" ) ),
	Multiple Delimited( :Name( "Used any?" ) ),
	Legend( 0 ),
	SendToReport(
		Dispatch(
			{},
			"Multiple Delimited( Used any? ) By Week*Returned?",
			OutlineBox,
			{Close( 1 )}
		)
	)
)

Here's a description of the charts: 

http://www.jmp.com/support/help/The_Categorical_Report.shtml#134897

And a description of the "Multiple Delimited" responses:

http://www.jmp.com/support/help/Example_of_the_Categorical_Platform.shtml#129405

dale_lehman
Level VII


Re: How do I graph multiple response columns correctly?

I'm not sure if this is what you are looking for, but I stacked the activity columns and it seems to be able to show the number of people engaged in each activity (even with overlaps).  I believe stacking those columns is what you want to do. See attached (and script for an initial graph).