<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Clustered bar chart by variable in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254485#M49957</link>
    <description>&lt;P&gt;Thank you!&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've never done scripting in JMP but I was able to merge the stack script from original table and graph builder script from the stacked table into one with a little modification and got it to work. A new table still needs to be generated but at least I'll only have one table to keep.&lt;/P&gt;&lt;P&gt;Sounds like I'll need to start learning to script in JMP to make my life easier.&lt;/P&gt;&lt;P&gt;Out of curiosity, is there any function in JMP that allows me to "record" what I do on the user interface into script?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 26 Mar 2020 20:29:38 GMT</pubDate>
    <dc:creator>hxnduke</dc:creator>
    <dc:date>2020-03-26T20:29:38Z</dc:date>
    <item>
      <title>Clustered bar chart by variable</title>
      <link>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254451#M49952</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This might sound like a simple question but I haven't figured out a way to make this work.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I ran a test on multiple samples and for each sample, the test outputs the percentages of the three different components that make up the sample.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I set up a data table with 4 columns: 1 for sample name and the other 3 for the percentages of the 3 components.&lt;/P&gt;&lt;P&gt;I'm trying to create a clustered bar chart as shown in the attached picture (done in Excel), where the data are grouped into 3 different clusters, corresponding to the 3 components.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know that I could try stacking all the component columns first ("Clustering by Variable" described &lt;A href="https://community.jmp.com/t5/JMPer-Cable/Clustered-bar-charts-in-JMP/ba-p/50835" target="_self"&gt;here&lt;/A&gt;); however that would make it into a super long table and hard to navigate (I have multiple types of tests, each outputting different components). Also, I would need to have 2 separate tables, one for the original data format which is easier to navigate and another for the clustered bar charts.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm thinking of two different methods to get around this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) For each test, plot the results for each component side by side. Is there a way to have them all share the same y-axis?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) Using the column stacking method, is there any way I can combine the two tables into one so that I could have a saved script in the original table that would generate the clustered bar charts automatically as I click it? I'm aware that I could save the script that generates the stacked table but then I would still need to re-make the clustered bar charts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 18:14:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254451#M49952</guid>
      <dc:creator>hxnduke</dc:creator>
      <dc:date>2020-03-26T18:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: Clustered bar chart by variable</title>
      <link>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254461#M49954</link>
      <description>&lt;P&gt;I was able to reproduce your graph with a simple Stack and then a Graph Builder.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cluster.PNG" style="width: 603px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/22576iD6B795F19CBA4A68/image-size/large?v=v2&amp;amp;px=999" role="button" title="cluster.PNG" alt="cluster.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names default to here(1);
dt = New Table( "Example",
	Add Rows( 5 ),
	New Column( "Sample",
		Character,
		"Nominal",
		Set Values( {"A", "B", "C", "D", "E"} )
	),
	New Column( "Component 1",
		Numeric,
		"Continuous",
		Format( "Percent", 7, 2 ),
		Set Selected,
		Set Values(
			[0.828470097854734, 0.8212191631319, 0.842324016243219,
			0.882067339960486, 0.872661964339204]
		)
	),
	New Column( "Component 2",
		Numeric,
		"Continuous",
		Format( "Percent", 7, 2 ),
		Set Selected,
		Set Values(
			[0.116772082395202, 0.140967620703167, 0.125925316195233,
			0.0770373142695993, 0.113037678561007]
		)
	),
	New Column( "Component 3",
		Numeric,
		"Continuous",
		Format( "Percent", 7, 2 ),
		Set Selected,
		Set Values(
			[0.0547578197500645, 0.0378132161649326, 0.0317506675615479,
			0.0408953457699151, 0.0143003570997886]
		)
	)
);
dtStack = dt &amp;lt;&amp;lt; Stack(
	columns( :Component 1, :Component 2, :Component 3 ),
	Source Label Column( "Label" ),
	Stacked Data Column( "Data" )
);

dtStack &amp;lt;&amp;lt; Graph Builder(
	Size( 534, 454 ),
	Show Control Panel( 0 ),
	Variables(
		X( :Label ),
		X( :Sample, Position( 1 ) ),
		Y( :Data ),
		Overlay( :Sample )
	),
	Elements( Bar( X( 1 ), X( 2 ), Y, Legend( 33 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"Label",
			ScaleBox,
			{Label Row( 1, {Automatic Tick Marks( 0 ), Show Major Labels( 0 )} )}
		),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{DispatchSeg( BarSeg( 1 ), Set Width Proportion( 1 ) )}
		)
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 26 Mar 2020 19:10:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254461#M49954</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-03-26T19:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: Clustered bar chart by variable</title>
      <link>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254485#M49957</link>
      <description>&lt;P&gt;Thank you!&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've never done scripting in JMP but I was able to merge the stack script from original table and graph builder script from the stacked table into one with a little modification and got it to work. A new table still needs to be generated but at least I'll only have one table to keep.&lt;/P&gt;&lt;P&gt;Sounds like I'll need to start learning to script in JMP to make my life easier.&lt;/P&gt;&lt;P&gt;Out of curiosity, is there any function in JMP that allows me to "record" what I do on the user interface into script?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 20:29:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254485#M49957</guid>
      <dc:creator>hxnduke</dc:creator>
      <dc:date>2020-03-26T20:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: Clustered bar chart by variable</title>
      <link>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254498#M49959</link>
      <description>&lt;P&gt;The answer is yes.&lt;/P&gt;
&lt;P&gt;The JSL I posted was mostly written by JMP.&amp;nbsp; Every Platform that you run, and each of the File==&amp;gt;Tables operation that you do, will surface the JSL that will regenerate the data tables or displays that were interactively created.&lt;/P&gt;
&lt;P&gt;When you create a new data table by stacking, the "Source" entry for the new table contains the JSL that will create the data table.&lt;/P&gt;
&lt;P&gt;For the Graph Builder Platform, if you go to the red triangle and select "Save Script" it will provide a script that will recreate the graph.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 21:27:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254498#M49959</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-03-26T21:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: Clustered bar chart by variable</title>
      <link>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254501#M49961</link>
      <description>&lt;P&gt;I got what you're saying and that was exactly what I did - combining the table stacking script and the Graph Builder script.&lt;/P&gt;&lt;P&gt;I was just asking for the cases where I need to do multiple operations (say, generate multiple graphs in the second table) rather than just two - whether there is a way to "record" all of those operations into a single script as I perform them. Not saying that it's necessary, I'm just wondering if such a feature exists in JMP.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 21:41:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254501#M49961</guid>
      <dc:creator>hxnduke</dc:creator>
      <dc:date>2020-03-26T21:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: Clustered bar chart by variable</title>
      <link>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254503#M49962</link>
      <description>&lt;P&gt;The JMP method is to simply take the scripts from each of the graphs, along with the data manipulations and place them into a single script.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It sound a bit like you are thinking along the lines of saving the scripts to the data table.&amp;nbsp; That is not what I am indicating.&amp;nbsp; I am taking about saving the table manipulation scripts and Platform Save Scripts to a new script window.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 21:48:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254503#M49962</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-03-26T21:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: Clustered bar chart by variable</title>
      <link>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254505#M49963</link>
      <description>&lt;P&gt;Yeah, sounds like I misinterpreted what you meant.&lt;/P&gt;&lt;P&gt;Can you expand more on the "&lt;SPAN&gt;table manipulation scripts and Platform Save Scripts" bit?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;One thing I've just found out is that I could actually copy the entire script of the data table. So this alone should be sufficient for what I currently need. I still need to first save individual reports to the Data Table as new scripts but now I can copy all of them at the same time rather than individually.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 21:56:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254505#M49963</guid>
      <dc:creator>hxnduke</dc:creator>
      <dc:date>2020-03-26T21:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: Clustered bar chart by variable</title>
      <link>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254508#M49964</link>
      <description>&lt;P&gt;Let me go through what I did to produce the script that I supplied to you on this discussion, as a way to illustrate my way of creating a script.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;You did not supply a data table, so I had to create my own example data table.&lt;/LI&gt;
&lt;LI&gt;Since I wanted to supply to you my copy of my example data table, I had to decide if it was best to save and up load the table, or to just include it in the script.&amp;nbsp; Since it is a very modest in size, I decided to just put in the script.&lt;/LI&gt;
&lt;LI&gt;So I opened a script window.&lt;/LI&gt;
&lt;LI&gt;I manually typed in
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);&lt;/CODE&gt;&lt;/PRE&gt;
This normally should be the first statement of every script.&amp;nbsp; It ensures that the JSL variables in this script, will be isolated to this script and not interfering with other scripts.&lt;/LI&gt;
&lt;LI&gt;I then went to the data table I had created, and clicked on the red triangle in the table panel and selected "Copy Table Script".&amp;nbsp; That placed the script that will generate the table as it currently exists, into the paste buffer.&lt;/LI&gt;
&lt;LI&gt;I then went back to the script window and pasted it into the script just below the first line
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);&lt;BR /&gt;
dt = New Table( "Example",
	Add Rows( 5 ),
	New Column( "Sample",
		Character,
		"Nominal",
		Set Values( {"A", "B", "C", "D", "E"} )
	),
	New Column( "Component 1",
		Numeric,
		"Continuous",
		Format( "Percent", 7, 2 ),
		Set Selected,
		Set Values(
			[0.828470097854734, 0.8212191631319, 0.842324016243219,
			0.882067339960486, 0.872661964339204]
		)
	),
	New Column( "Component 2",
		Numeric,
		"Continuous",
		Format( "Percent", 7, 2 ),
		Set Selected,
		Set Values(
			[0.116772082395202, 0.140967620703167, 0.125925316195233,
			0.0770373142695993, 0.113037678561007]
		)
	),
	New Column( "Component 3",
		Numeric,
		"Continuous",
		Format( "Percent", 7, 2 ),
		Set Selected,
		Set Values(
			[0.0547578197500645, 0.0378132161649326, 0.0317506675615479,
			0.0408953457699151, 0.0143003570997886]
		)
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;
I also added&amp;nbsp; dt =&amp;nbsp; in front of the table definition, which allows for referencing this data table&amp;nbsp; by "dt" rather than having a more formal reference of "data table("example")".&lt;/LI&gt;
&lt;LI&gt;I then started playing, interactively with the data table, and graph builder, to figure out what I had to do to produce the graph I wanted.&amp;nbsp; This was an iterative methodology, requiring multiple data table manipulations and graph builder executions until I got the results I wanted.&lt;/LI&gt;
&lt;LI&gt;So once I was happy with the results, I then looked as what it took to generate the results. It was a simple table manipulation of stacking the data, and then a graph builder run on the stacked data.&lt;/LI&gt;
&lt;LI&gt;First I needed to get the script code.&amp;nbsp; This code is readily available in the table panel of the stacked data table.&amp;nbsp; If you right click on the green triangle in front of the "source" entry in the table panel, you can select "Edit".&amp;nbsp; This will display the JSL that can be used to recreate this data table.&amp;nbsp; I selected all of the code and copied into the paste buffer, just after the already existing JSL in the script window
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names default to here(1);
dt = New Table( "Example",
	Add Rows( 5 ),
	New Column( "Sample",
		Character,
		"Nominal",
		Set Values( {"A", "B", "C", "D", "E"} )
	),
	New Column( "Component 1",
		Numeric,
		"Continuous",
		Format( "Percent", 7, 2 ),
		Set Selected,
		Set Values(
			[0.828470097854734, 0.8212191631319, 0.842324016243219,
			0.882067339960486, 0.872661964339204]
		)
	),
	New Column( "Component 2",
		Numeric,
		"Continuous",
		Format( "Percent", 7, 2 ),
		Set Selected,
		Set Values(
			[0.116772082395202, 0.140967620703167, 0.125925316195233,
			0.0770373142695993, 0.113037678561007]
		)
	),
	New Column( "Component 3",
		Numeric,
		"Continuous",
		Format( "Percent", 7, 2 ),
		Set Selected,
		Set Values(
			[0.0547578197500645, 0.0378132161649326, 0.0317506675615479,
			0.0408953457699151, 0.0143003570997886]
		)
	)
);
dtStack = dt &amp;lt;&amp;lt; Stack(
	columns( :Component 1, :Component 2, :Component 3 ),
	Source Label Column( "Label" ),
	Stacked Data Column( "Data" )
);&lt;/CODE&gt;&lt;/PRE&gt;
Note that I also added a pointer to the stack "dtStack =" and replaced the long reference to the original data table with the short reference of ""dt";&lt;/LI&gt;
&lt;LI&gt;Next I went to the Graph Builder output and clicked on the red triangle and selected "Save Script==&amp;gt;To Clipboard"&lt;/LI&gt;
&lt;LI&gt;I then pasted the Clipboard(paste buffer) into the script.
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names default to here(1);
dt = New Table( "Example",
	Add Rows( 5 ),
	New Column( "Sample",
		Character,
		"Nominal",
		Set Values( {"A", "B", "C", "D", "E"} )
	),
	New Column( "Component 1",
		Numeric,
		"Continuous",
		Format( "Percent", 7, 2 ),
		Set Selected,
		Set Values(
			[0.828470097854734, 0.8212191631319, 0.842324016243219,
			0.882067339960486, 0.872661964339204]
		)
	),
	New Column( "Component 2",
		Numeric,
		"Continuous",
		Format( "Percent", 7, 2 ),
		Set Selected,
		Set Values(
			[0.116772082395202, 0.140967620703167, 0.125925316195233,
			0.0770373142695993, 0.113037678561007]
		)
	),
	New Column( "Component 3",
		Numeric,
		"Continuous",
		Format( "Percent", 7, 2 ),
		Set Selected,
		Set Values(
			[0.0547578197500645, 0.0378132161649326, 0.0317506675615479,
			0.0408953457699151, 0.0143003570997886]
		)
	)
);
dtStack = dt &amp;lt;&amp;lt; Stack(
	columns( :Component 1, :Component 2, :Component 3 ),
	Source Label Column( "Label" ),
	Stacked Data Column( "Data" )
);

dtStack &amp;lt;&amp;lt; Graph Builder(
	Size( 534, 454 ),
	Show Control Panel( 0 ),
	Variables(
		X( :Label ),
		X( :Sample, Position( 1 ) ),
		Y( :Data ),
		Overlay( :Sample )
	),
	Elements( Bar( X( 1 ), X( 2 ), Y, Legend( 33 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"Label",
			ScaleBox,
			{Label Row( 1, {Automatic Tick Marks( 0 ), Show Major Labels( 0 )} )}
		),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{DispatchSeg( BarSeg( 1 ), Set Width Proportion( 1 ) )}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
Note, I added "dtStack &amp;lt;&amp;lt;" in front the Graph Builder statement.&amp;nbsp; This is the best way to ensure that Graph Builder will run on the stacked data an not the original code.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;So this is the process used to create a combined script.&amp;nbsp; As I am sure you can envision, many different Platforms can be added to such a script, with them using the original data table("dt") or the stacked data table("dtStack") can be used.&amp;nbsp; You also may have other data table manipulations you need to add, etc. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;Concerning the copying in mass, scripts you have saved to a data table, I am not aware of being able to do that, however, I have not had an issue with that myself.&amp;nbsp; Most of the time, I am looking to build a script, not to do my own data analysis.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2020 22:50:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254508#M49964</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-03-26T22:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: Clustered bar chart by variable</title>
      <link>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254555#M49974</link>
      <description>&lt;P&gt;To be clear, there is not a way to record all of your operations in JMP into a single script.&amp;nbsp; You can record a macro this way in Excel but not in JMP.&lt;/P&gt;
&lt;P&gt;Instead the JSL for every platform that you run in JMP can be accessed by clicking the little red triangle and selecting one of the Save Script options.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 12:07:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254555#M49974</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2020-03-27T12:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: Clustered bar chart by variable</title>
      <link>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254660#M49998</link>
      <description>&lt;P&gt;Jim,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for walking me through your code - makes things very clear now. Quick question - if I want to add multiple operations to the new stacked table, I'll still need to call it out before every operation right? Say, if I also want to plot a histogram from the stacked table, I'll just add this following line?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dtStack &amp;lt;&amp;lt; Distribution( Continuous Distribution( Column( :Data ) ) );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 20:17:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254660#M49998</guid>
      <dc:creator>hxnduke</dc:creator>
      <dc:date>2020-03-27T20:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: Clustered bar chart by variable</title>
      <link>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254662#M49999</link>
      <description>&lt;P&gt;Thanks! That's what I was wondering. It's not a big deal though, since as you said, the script for each operation can be accessed.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 20:18:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Clustered-bar-chart-by-variable/m-p/254662#M49999</guid>
      <dc:creator>hxnduke</dc:creator>
      <dc:date>2020-03-27T20:18:53Z</dc:date>
    </item>
  </channel>
</rss>

