<?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: Finding vertex of bivariate graph in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Finding-vertex-of-bivariate-graph/m-p/281689#M54526</link>
    <description>&lt;P&gt;Hi Makrbailey,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I ask for more things?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I slightly changed the script to solve linear function and it worked properly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;however, I found myself that checking the result through log is not convenient as much as checking through tree-box.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;as for as I know, dispatch function is the right one to make a tree-box to report.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so I&amp;nbsp; changed the script as follows. however, it's not working.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and I want to get the ans for each site (there's 4 sites). so I've tried to do it but it also didn't work.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please give me your hand to solve it&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-&amp;gt; My purpose&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. add ans of each site.&lt;/P&gt;&lt;P&gt;2. add ans to report.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-&amp;gt; My script&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Names Default To Here( 1 );&lt;/P&gt;&lt;P&gt;dt = Current Data Table();&lt;/P&gt;&lt;P&gt;// fit quadratic polynomial interpolating function&lt;BR /&gt;biv = dt &amp;lt;&amp;lt; Bivariate(&lt;BR /&gt;Y( :CALU_CALU_intr_cy ),&lt;BR /&gt;X( :OC offset Y um ),&lt;BR /&gt;Fit Line( {Line Color( {212, 73, 88} )} ),&lt;BR /&gt;by(:site),&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;// get reference to report layer&lt;BR /&gt;rbiv = biv &amp;lt;&amp;lt; Report;&lt;/P&gt;&lt;P&gt;// get parameter estimates&lt;BR /&gt;parm = rbiv["Parameter Estimates"][Number Col Box( 1 )] &amp;lt;&amp;lt; Get As Matrix;&lt;/P&gt;&lt;P&gt;// compute x intercept&lt;BR /&gt;ans = -parm[1] / parm[2];&lt;/P&gt;&lt;P&gt;rbiv&amp;lt;&amp;lt;dispatch(&lt;BR /&gt;{"ans"},&lt;BR /&gt;"ans",&lt;BR /&gt;framebox,&lt;BR /&gt;{marker size(3)}&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="hover-card-container"&gt;&lt;DIV class="profileCard"&gt;&lt;DIV class="inner"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Fri, 24 Jul 2020 05:52:55 GMT</pubDate>
    <dc:creator>Brad_Park</dc:creator>
    <dc:date>2020-07-24T05:52:55Z</dc:date>
    <item>
      <title>Finding vertex of bivariate graph</title>
      <link>https://community.jmp.com/t5/Discussions/Finding-vertex-of-bivariate-graph/m-p/274941#M53344</link>
      <description>&lt;P&gt;Hi all,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm trying to get a vertex point from bivariate graph&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;as so far, I get the extract the parameter with script and calculate it by excel sheet.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm quite sure finding vertex function is included in JMP but I couldn't find it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there any way to get vertex directly?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;lt;script that I used to extract the parameter&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Current data Table ();

biv=Bivariate(
Y( :contrast_100cm ),
X( :Offset_Z ),
Fit Polynomial( 2, {Line Color( {212, 73, 88} )} ),
Where( :site == "Para#4" )
);
rbiv = biv &amp;lt;&amp;lt; report;
rbiv[tablebox(4)]&amp;lt;&amp;lt;make data table("Parameter table");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:02:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Finding-vertex-of-bivariate-graph/m-p/274941#M53344</guid>
      <dc:creator>Brad_Park</dc:creator>
      <dc:date>2023-06-11T11:02:35Z</dc:date>
    </item>
    <item>
      <title>Re: Finding vertex of bivariate graph</title>
      <link>https://community.jmp.com/t5/Discussions/Finding-vertex-of-bivariate-graph/m-p/275022#M53366</link>
      <description>&lt;P&gt;JMP does not have a solver as such. But you are fitting a quadratic polynomial interpolating function so you only need to set the first derivative with respect to Offset_Z equal to zero and solve for Offset_Z. I assume that by "vertex" you mean the minimum or maximum of the function.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

// example of data
dt = Current Data Table();

// fit quadratic polynomial interpolating function
biv = dt &amp;lt;&amp;lt; Bivariate(
	Y( :contrast_100cm ),
	X( :Offset_Z ),
	Fit Polynomial( 2, {Line Color( {212, 73, 88} )} ),
	Where( :site == "Para#4" )
);

// get reference to report layer
rbiv = biv &amp;lt;&amp;lt; Report;

// get parameter estimates
parms = rbiv[NumberColBox( 1 )] &amp;lt;&amp;lt; Get As Matrix;

// compute extremum
extremum = -parms[2] / (2*parms[3]);

Show( parms, extremum );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Jun 2020 15:09:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Finding-vertex-of-bivariate-graph/m-p/275022#M53366</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2020-06-23T15:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: Finding vertex of bivariate graph</title>
      <link>https://community.jmp.com/t5/Discussions/Finding-vertex-of-bivariate-graph/m-p/275038#M53368</link>
      <description>&lt;P&gt;Or, another approach is to use Fit Model, use the Response Surface macro so that JMP sets the response surface attribute. Then you will get a response surface output that solves for the critical values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I had JMP create this script with some data that I made up.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Fit Model(
	Y( :contrast_100cm ),
	Effects( :Offset_Z &amp;amp; RS, :Offset_Z * :Offset_Z ),
	Personality( "Standard Least Squares" ),
	Emphasis( "Effect Leverage" ),
	Run(
		:contrast_100cm &amp;lt;&amp;lt; {Summary of Fit( 0 ), Analysis of Variance( 0 ),
		Parameter Estimates( 0 ), Lack of Fit( 0 ), Scaled Estimates( 0 ),
		Plot Actual by Predicted( 0 ), Plot Residual by Predicted( 0 ),
		Plot Studentized Residuals( 0 ), Plot Effect Leverage( 0 ),
		Plot Residual by Normal Quantiles( 0 ), Box Cox Y Transformation( 0 )}
	),
	SendToReport(
		Dispatch(
			{"Response contrast_100cm", "Whole Model"},
			"Summary of Fit",
			OutlineBox,
			{Close( 1 )}
		),
		Dispatch(
			{"Response contrast_100cm", "Whole Model"},
			"Analysis of Variance",
			OutlineBox,
			{Close( 1 )}
		),
		Dispatch(
			{"Response contrast_100cm", "Whole Model"},
			"Parameter Estimates",
			OutlineBox,
			{Close( 1 )}
		),
		Dispatch(
			{"Response contrast_100cm"},
			"Response Surface",
			OutlineBox,
			{Close( 0 )}
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Here is the part of the output that finds the critical value.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 397px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/24767iADD01124ED9FCA53/image-dimensions/397x607?v=v2" width="397" height="607" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2020 15:24:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Finding-vertex-of-bivariate-graph/m-p/275038#M53368</guid>
      <dc:creator>Dan_Obermiller</dc:creator>
      <dc:date>2020-06-23T15:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: Finding vertex of bivariate graph</title>
      <link>https://community.jmp.com/t5/Discussions/Finding-vertex-of-bivariate-graph/m-p/275901#M53542</link>
      <description>&lt;P&gt;Thank you for reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tested the script and found that this is exactly what I was looking for.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(Even though I didn't understand the whole code )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but I found that the Offset_Z value which is calculated by response surface is slightly different from my manual calculation (by differential)&lt;/P&gt;&lt;P&gt;the difference was under 0.0003 so it was no big deal&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you again for your help&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 02:14:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Finding-vertex-of-bivariate-graph/m-p/275901#M53542</guid>
      <dc:creator>Brad_Park</dc:creator>
      <dc:date>2020-06-29T02:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: Finding vertex of bivariate graph</title>
      <link>https://community.jmp.com/t5/Discussions/Finding-vertex-of-bivariate-graph/m-p/276749#M53718</link>
      <description>&lt;P&gt;Thank you for kind answer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because you explained each code by remark, It was easy to understand.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was trying to modify your code to find out the&amp;nbsp;&lt;SPAN&gt;x intercept in linear function.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;but nothing was come out.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Actually I really don't know how "show function" works.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Could you please help me to solve this?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jul 2020 05:38:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Finding-vertex-of-bivariate-graph/m-p/276749#M53718</guid>
      <dc:creator>Brad_Park</dc:creator>
      <dc:date>2020-07-03T05:38:47Z</dc:date>
    </item>
    <item>
      <title>Re: Finding vertex of bivariate graph</title>
      <link>https://community.jmp.com/t5/Discussions/Finding-vertex-of-bivariate-graph/m-p/276776#M53734</link>
      <description>&lt;P&gt;The &lt;STRONG&gt;Show()&lt;/STRONG&gt; function writes text based on its arguments to the Log window, which is not open by default. Select &lt;STRONG&gt;View &amp;gt; Log&lt;/STRONG&gt; if you are using Windows or &lt;STRONG&gt;Window &amp;gt; Log&lt;/STRONG&gt; if you are using Macintosh.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I modified the script to estimate the x-intercept, assuming that it exists in the real plane. It is just the quadratic solution for the roots.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

// example of data
x = -5::5;
dt = New Table( "Non-Linear Data",
	New Column( "X", Numeric, Continuous, Values( x ) ),
	New Column( "Y", Numeric, Continuous, Values( x^2 - x - 12 ) )
);

// fit quadratic polynomial interpolating function
biv = dt &amp;lt;&amp;lt; Bivariate(
	Y( :Y ),
	X( :X ),
	Fit Polynomial( 2 )
);

// get reference to report layer
rbiv = biv &amp;lt;&amp;lt; Report;

// get parameter estimates
parm = rbiv["Parameter Estimates"][NumberColBox( 1 )] &amp;lt;&amp;lt; Get As Matrix;

// compute x intercept
ans = parm[2]^2 - 4*parm[3]*parm[1];
x intercepts = If( ans &amp;gt; 0,
	(-parm[2] + { -1, 1 } * Sqrt( ans )) / (2*parm[3]);
);

Show( parm, x intercepts );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 03 Jul 2020 11:54:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Finding-vertex-of-bivariate-graph/m-p/276776#M53734</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2020-07-03T11:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: Finding vertex of bivariate graph</title>
      <link>https://community.jmp.com/t5/Discussions/Finding-vertex-of-bivariate-graph/m-p/281689#M54526</link>
      <description>&lt;P&gt;Hi Makrbailey,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I ask for more things?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I slightly changed the script to solve linear function and it worked properly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;however, I found myself that checking the result through log is not convenient as much as checking through tree-box.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;as for as I know, dispatch function is the right one to make a tree-box to report.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so I&amp;nbsp; changed the script as follows. however, it's not working.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and I want to get the ans for each site (there's 4 sites). so I've tried to do it but it also didn't work.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please give me your hand to solve it&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-&amp;gt; My purpose&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. add ans of each site.&lt;/P&gt;&lt;P&gt;2. add ans to report.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-&amp;gt; My script&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Names Default To Here( 1 );&lt;/P&gt;&lt;P&gt;dt = Current Data Table();&lt;/P&gt;&lt;P&gt;// fit quadratic polynomial interpolating function&lt;BR /&gt;biv = dt &amp;lt;&amp;lt; Bivariate(&lt;BR /&gt;Y( :CALU_CALU_intr_cy ),&lt;BR /&gt;X( :OC offset Y um ),&lt;BR /&gt;Fit Line( {Line Color( {212, 73, 88} )} ),&lt;BR /&gt;by(:site),&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;// get reference to report layer&lt;BR /&gt;rbiv = biv &amp;lt;&amp;lt; Report;&lt;/P&gt;&lt;P&gt;// get parameter estimates&lt;BR /&gt;parm = rbiv["Parameter Estimates"][Number Col Box( 1 )] &amp;lt;&amp;lt; Get As Matrix;&lt;/P&gt;&lt;P&gt;// compute x intercept&lt;BR /&gt;ans = -parm[1] / parm[2];&lt;/P&gt;&lt;P&gt;rbiv&amp;lt;&amp;lt;dispatch(&lt;BR /&gt;{"ans"},&lt;BR /&gt;"ans",&lt;BR /&gt;framebox,&lt;BR /&gt;{marker size(3)}&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="hover-card-container"&gt;&lt;DIV class="profileCard"&gt;&lt;DIV class="inner"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 24 Jul 2020 05:52:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Finding-vertex-of-bivariate-graph/m-p/281689#M54526</guid>
      <dc:creator>Brad_Park</dc:creator>
      <dc:date>2020-07-24T05:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: Finding vertex of bivariate graph</title>
      <link>https://community.jmp.com/t5/Discussions/Finding-vertex-of-bivariate-graph/m-p/281703#M54530</link>
      <description>&lt;P&gt;As I have posted many times, the &lt;STRONG&gt;Send to Report()&lt;/STRONG&gt; and &lt;STRONG&gt;Dispatch()&lt;/STRONG&gt; arguments are intended for JMP to save customization. They are not intended for users. Of course, you can use them. But there are better ways.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It appears that you want to add the answer to the plot. This example illustrates how to do that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

// fit quadratic polynomial interpolating function
biv = dt &amp;lt;&amp;lt; Bivariate(
	Y( :weight ),
	X( :height ),
	Fit Line
);

// get reference to report layer
rbiv = biv &amp;lt;&amp;lt; Report;

// get parameter estimates
parm = rbiv["Parameter Estimates"][Number Col Box( 1 )] &amp;lt;&amp;lt; Get As Matrix;

// compute x intercept
ans = -parm[1] / parm[2];

rbiv[FrameBox(1)] &amp;lt;&amp;lt; Add Graphics Script(
	Text( { 52.5, 160 }, "X intercept is " || Char( ans ) )
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 24 Jul 2020 11:46:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Finding-vertex-of-bivariate-graph/m-p/281703#M54530</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2020-07-24T11:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: Finding vertex of bivariate graph</title>
      <link>https://community.jmp.com/t5/Discussions/Finding-vertex-of-bivariate-graph/m-p/283195#M54791</link>
      <description>It worked&lt;BR /&gt;Thank you so much</description>
      <pubDate>Fri, 31 Jul 2020 08:05:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Finding-vertex-of-bivariate-graph/m-p/283195#M54791</guid>
      <dc:creator>Brad_Park</dc:creator>
      <dc:date>2020-07-31T08:05:21Z</dc:date>
    </item>
  </channel>
</rss>

