<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Seriation in R: How to Optimally Order Objects in a Data Matrice	</title>
	<atom:link href="https://www.datanovia.com/en/blog/seriation-in-r-how-to-optimally-order-objects-in-a-data-matrice/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.datanovia.com/en/blog/seriation-in-r-how-to-optimally-order-objects-in-a-data-matrice/</link>
	<description>Data Mining and Statistics for Decision Support</description>
	<lastBuildDate>Thu, 13 Jun 2024 09:50:44 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
	<item>
		<title>
		By: pierre		</title>
		<link>https://www.datanovia.com/en/blog/seriation-in-r-how-to-optimally-order-objects-in-a-data-matrice/#comment-29184</link>

		<dc:creator><![CDATA[pierre]]></dc:creator>
		<pubDate>Thu, 13 Jun 2024 09:50:44 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=15802#comment-29184</guid>

					<description><![CDATA[Hie
Thanks a lot for yours exlanations, VERY usefull.
Do you know statisticals test post hoc to idendify which variables are spécifics to one or more class?
thanks a lot]]></description>
			<content:encoded><![CDATA[<p>Hie<br />
Thanks a lot for yours exlanations, VERY usefull.<br />
Do you know statisticals test post hoc to idendify which variables are spécifics to one or more class?<br />
thanks a lot</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Tim		</title>
		<link>https://www.datanovia.com/en/blog/seriation-in-r-how-to-optimally-order-objects-in-a-data-matrice/#comment-19791</link>

		<dc:creator><![CDATA[Tim]]></dc:creator>
		<pubDate>Thu, 07 May 2020 09:43:15 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=15802#comment-19791</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.datanovia.com/en/blog/seriation-in-r-how-to-optimally-order-objects-in-a-data-matrice/#comment-19787&quot;&gt;kassambara&lt;/a&gt;.

Perfect! Thank you for the quick reply.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.datanovia.com/en/blog/seriation-in-r-how-to-optimally-order-objects-in-a-data-matrice/#comment-19787">kassambara</a>.</p>
<p>Perfect! Thank you for the quick reply.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: kassambara		</title>
		<link>https://www.datanovia.com/en/blog/seriation-in-r-how-to-optimally-order-objects-in-a-data-matrice/#comment-19787</link>

		<dc:creator><![CDATA[kassambara]]></dc:creator>
		<pubDate>Wed, 06 May 2020 12:26:19 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=15802#comment-19787</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.datanovia.com/en/blog/seriation-in-r-how-to-optimally-order-objects-in-a-data-matrice/#comment-19785&quot;&gt;Tim&lt;/a&gt;.

&lt;div class=&quot;rdoc&quot;&gt;
&lt;p&gt;&lt;strong&gt;Seriate rows only&lt;/strong&gt;. When creating the image, you need to specify the columns order even if you seriate only the rows; so, consider using &lt;code&gt;NA&lt;/code&gt; for column orders:&lt;/p&gt;
&lt;pre class=&quot;r&quot;&gt;&lt;code&gt;library(seriation)
data(&#034;Townships&#034;)

# Seriate rows only using margin = 1
set.seed(1234)
row_orders &#060;- seriate(
  Townships, method = &#034;BEA&#034;, control = list(rep = 10),
  margin = 1
  )

# Visualize
# You need to specify both rows and columns order
# Use NA for column orders
bertinplot(
  Townships, order = c(row_orders, NA),
  options = list(panel = panel.circles)
)&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;img src=&quot;https://i.imgur.com/9n57RkH.png&quot; alt=&quot;plot of chunk seriate-rows-only&quot; /&gt;&lt;/p&gt;
&lt;/div&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.datanovia.com/en/blog/seriation-in-r-how-to-optimally-order-objects-in-a-data-matrice/#comment-19785">Tim</a>.</p>
<div class="rdoc">
<p><strong>Seriate rows only</strong>. When creating the image, you need to specify the columns order even if you seriate only the rows; so, consider using <code>NA</code> for column orders:</p>
<pre class="r"><code>library(seriation)
data(&quot;Townships&quot;)

# Seriate rows only using margin = 1
set.seed(1234)
row_orders &lt;- seriate(
  Townships, method = &quot;BEA&quot;, control = list(rep = 10),
  margin = 1
  )

# Visualize
# You need to specify both rows and columns order
# Use NA for column orders
bertinplot(
  Townships, order = c(row_orders, NA),
  options = list(panel = panel.circles)
)</code></pre>
<p><img src="https://i.imgur.com/9n57RkH.png" alt="plot of chunk seriate-rows-only" /></p>
</div>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Tim		</title>
		<link>https://www.datanovia.com/en/blog/seriation-in-r-how-to-optimally-order-objects-in-a-data-matrice/#comment-19785</link>

		<dc:creator><![CDATA[Tim]]></dc:creator>
		<pubDate>Wed, 06 May 2020 10:56:03 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=15802#comment-19785</guid>

					<description><![CDATA[In your &quot;Township&quot;example you: #Seriate rows and columns using the bond energy algorithm (BEA)
I wanted to know if it is possible to only seriate the rows and fix the columns. I tried with the &quot;margin&quot; but I then get a error for plotting.

Thanks for your help and your amazing package (sounds dirty ;-)]]></description>
			<content:encoded><![CDATA[<p>In your &#8220;Township&#8221;example you: #Seriate rows and columns using the bond energy algorithm (BEA)<br />
I wanted to know if it is possible to only seriate the rows and fix the columns. I tried with the &#8220;margin&#8221; but I then get a error for plotting.</p>
<p>Thanks for your help and your amazing package (sounds dirty 😉</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Object Caching 111/178 objects using Memcached
Page Caching using Disk: Enhanced 
Lazy Loading (feed)
Database Caching 37/62 queries in 0.033 seconds using APC

Served from: www.datanovia.com @ 2025-07-23 15:04:04 by W3 Total Cache
-->