[adegenet-commits] r886 - in pkg/inst/doc: . figs

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Sun May 29 18:21:10 CEST 2011


Author: jombart
Date: 2011-05-29 18:21:07 +0200 (Sun, 29 May 2011)
New Revision: 886

Added:
   pkg/inst/doc/figs/-023.pdf
   pkg/inst/doc/figs/-025.pdf
   pkg/inst/doc/figs/-027.pdf
   pkg/inst/doc/figs/-029.pdf
   pkg/inst/doc/figs/-030.pdf
   pkg/inst/doc/figs/-032.pdf
   pkg/inst/doc/figs/-036.pdf
   pkg/inst/doc/figs/-037.pdf
   pkg/inst/doc/figs/-038.pdf
   pkg/inst/doc/figs/-040.pdf
   pkg/inst/doc/figs/-041.pdf
   pkg/inst/doc/figs/-043.pdf
Modified:
   pkg/inst/doc/adegenet-dapc.Rnw
   pkg/inst/doc/adegenet-dapc.pdf
   pkg/inst/doc/figs/-006.pdf
   pkg/inst/doc/figs/-010.pdf
   pkg/inst/doc/figs/-011.pdf
   pkg/inst/doc/figs/-012.pdf
   pkg/inst/doc/figs/-013.pdf
   pkg/inst/doc/figs/-015.pdf
   pkg/inst/doc/figs/-016.pdf
   pkg/inst/doc/figs/-018.pdf
   pkg/inst/doc/figs/-019.pdf
   pkg/inst/doc/figs/-020.pdf
   pkg/inst/doc/figs/-022.pdf
   pkg/inst/doc/figs/-024.pdf
   pkg/inst/doc/figs/-026.pdf
   pkg/inst/doc/figs/-028.pdf
   pkg/inst/doc/figs/-031.pdf
Log:
Vignette complete. Will just need to correct typos and fix references.


Modified: pkg/inst/doc/adegenet-dapc.Rnw
===================================================================
--- pkg/inst/doc/adegenet-dapc.Rnw	2011-05-29 13:25:59 UTC (rev 885)
+++ pkg/inst/doc/adegenet-dapc.Rnw	2011-05-29 16:21:07 UTC (rev 886)
@@ -376,7 +376,7 @@
 <<fig=TRUE>>=
 scatter(dapc1, ratio=0, grid=FALSE, bg="white", pch=20,  cell=0, cstar=0, lwd=2, col=transp(myCol), cex=3, clab=0)
 par(xpd=TRUE)
-legend("topright", pch=20, cex=1, col=transp(myCol), legend=paste("Cluster", 1:6), pt.cex=3)
+legend("topright", pch=20, cex=1, col=transp(myCol), legend=paste("Cluster", 1:6), pt.cex=3, bg=transp("white"))
 add.scatter.eig(dapc1$eig, 5,1,2, posi="bottomright", inset=.03, csub=1)
 @
 
@@ -393,7 +393,7 @@
 <<fig=TRUE>>=
 scatter(dapc1, ratio=0, grid=FALSE, bg="white", pch=20,  cell=0, cstar=0, lwd=2, col=transp(myCol), cex=3, clab=0, mstree=TRUE)
 par(xpd=TRUE)
-legend("topright", pch=20, cex=1, col=transp(myCol), legend=paste("Cluster", 1:6), pt.cex=3)
+legend("topright", pch=20, cex=1, col=transp(myCol), legend=paste("Cluster", 1:6), pt.cex=3, bg=transp("white"))
 points(dapc1$grp.coord[,1], dapc1$grp.coord[,2], pch=4, cex=3, lwd=8, col="black")
 points(dapc1$grp.coord[,1], dapc1$grp.coord[,2], pch=4, cex=3, lwd=2, col=myCol)
 
@@ -433,7 +433,8 @@
 <<>>=
 data(H3N2)
 H3N2
-dapc.flu <- dapc(H3N2, pop=H3N2$other$epid, n.pca=30,n.da=10)
+pop(H3N2) <- H3N2$other$epid
+dapc.flu <- dapc(H3N2, n.pca=30,n.da=10)
 @
 
 The first discriminant function shows the temporal evolution of the influenza virus, while the
@@ -445,12 +446,37 @@
 
 We can assess which alleles most highlight the originality of 2006 using \texttt{loadingplot}:
 <<fig=TRUE>>=
-temp <- loadingplot(dapc.flu$var.contr, thres=.05)
+set.seed(4)
+contrib <- loadingplot(dapc.flu$var.contr, axis=2, thres=.07, lab.jitter=1)
 @
 
+\noindent \texttt{temp} is a list invisibly returned by \texttt{loadingplot} which contains the most
+contributing alleles.
+In this case, SNPs \texttt{906} and \texttt{399} reflect most the temporal evolution of the virus.
+We can look into their frequencies over 2002-2006:
+<<echo=TRUE,fig=TRUE>>=
+temp <- seploc(H3N2)
+snp906 <- truenames(temp[["906"]])$tab
+snp399 <- truenames(temp[["399"]])$tab
+freq906 <- apply(snp906, 2, function(e) tapply(e, pop(H3N2), mean, na.rm=TRUE))
+freq399 <- apply(snp399, 2, function(e) tapply(e, pop(H3N2), mean, na.rm=TRUE))
+freq906
+freq399
+par(mfrow=c(1,2), mar=c(5.1,4.1,4.1,.1),las=3)
+matplot(freq906, pch=c("a","c"), type="b",xlab="year",ylab="allele frequency", xaxt="n", cex=1.5, main="SNP # 906")
+axis(side=1, at=1:6, lab=2001:2006)
+matplot(freq399, pch=c("c","t"), type="b", xlab="year",ylab="allele frequency", xaxt="n", cex=1.5, main="SNP # 399")
+axis(side=1, at=1:6, lab=2001:2006)
+@
 
+In both cases, a new allele appeared in 2005 at a very low frequency, and reached high or even dominant frequencies a
+year later.
+Irrespective of the mecanism underlying these changes (drift or selection), this illustrate that in
+seasonal influenza, specific nucleotides can undergo drastic changes within only a couple of years.
 
 
+
+
 %%%%%%%%%%%%%%%%
 \subsection{Interpreting group memberships}
 %%%%%%%%%%%%%%%%
@@ -693,6 +719,7 @@
 We first split the dataset into two parts: one used for the analysis, and one used as supplementary individuals:
 <<>>=
 data(microbov)
+set.seed(2)
 kept.id <- unlist(tapply(1:nInd(microbov), pop(microbov), function(e) sample(e, 30,replace=FALSE)))
 x <- microbov[kept.id]
 x.sup <- microbov[-kept.id]
@@ -722,7 +749,7 @@
 First, we can represent the new individuals using a scatterplot, and see :
 <<fig=TRUE>>=
 col <- rainbow(length(levels(pop(x))))
-col.points <- transp(col[as.integer(pop(x))],.1)
+col.points <- transp(col[as.integer(pop(x))],.2)
 scatter(dapc4, col=col, bg="white", ratio=0, grid=FALSE, pch="", cstar=0, axesel=FALSE, clab=0, lwd=3, xlim=c(-10,10))
 par(xpd=TRUE)
 points(dapc4$ind.coord[,1], dapc4$ind.coord[,2], pch=20, col=col.points, cex=5)
@@ -734,5 +761,21 @@
 
 \noindent Light dots and ellipses correspond to the original analysis, while more solid squares indicate
 supplementary individuals.
+Results are fairly satisfying:
+<<>>=
+mean(as.character(pred.sup$assign)==as.character(pop(x.sup)))
+@
+Around \Sexpr{round(100*mean(as.character(pred.sup$assign)==as.character(pop(x.sup))))} of
+individuals have been assigned to their actual cluster.
+For more details about which breed was assigned to which cluster, we can display the contingency
+table of the actual cluster vs the inferred one:
+<<fig=TRUE>>=
+table.value(table(pred.sup$assign, pop(x.sup)), col.lab=levels(pop(x.sup)))
+@
 
+\noindent Columns correspond to actual clusters of the supplementary individuals, while rows
+correspond to inferred clusters.
+Overall, groups are fairly well retrieved, but we can notice that individuals of Blonde d'Aquitaine
+breed are poorly identified compared to other breeds.
+
 \end{document}

Modified: pkg/inst/doc/adegenet-dapc.pdf
===================================================================
--- pkg/inst/doc/adegenet-dapc.pdf	2011-05-29 13:25:59 UTC (rev 885)
+++ pkg/inst/doc/adegenet-dapc.pdf	2011-05-29 16:21:07 UTC (rev 886)
@@ -106,217 +106,203 @@
 << /S /GoTo /D (subsection.5.2) >>
 endobj
 72 0 obj
-(Predicting group membership)
+(In practice)
 endobj
 73 0 obj
-<< /S /GoTo /D (subsection.5.3) >>
+<< /S /GoTo /D [74 0 R  /Fit ] >>
 endobj
-76 0 obj
-(Representing supplementary individuals)
-endobj
-77 0 obj
-<< /S /GoTo /D [78 0 R  /Fit ] >>
-endobj
-80 0 obj <<
+76 0 obj <<
 /Length 1064      
 /Filter /FlateDecode
 >>
 stream
 xÚ•VKoÛ8¾çWè(5#R$EžÙ¤Y @`a`Ý[vŒõk%%…ÿý΋’Õ¸-ö ‘ÔçñÍ7Ël“•Ù7å/Æßç7·ÖdºVF;›Í×™v•ªb浃ÁdóUö%¿;³ª,óm¡óCaê¼oÅ̸|õ
 _–ðôÛ#ÉH­?òø€úŠÛíÞÛ¼ƒ
-TÒh>îàuFmÚ´¸.¾Î?e¶RÁèlf´Š:pLO-Gþqrb+ä÷æÇý‰"<ŠRÃ>;Öø»tåCa|~¢§{Xjttû¨c¦Á‰s±ðVU•Ëf•UÁ:ö;ÁLày–dÌœ}:îIKL ª ÁŽhk±óyªgÞhjPý óæšØú®dP¯˜½çrU*!:¼˜Æ¤ž;tÞ.R}~`j>ÚšimTp&Nùô0`WkŸ¿á|“`í{|³k Ä0‘uV(‘Mú„בH!8íX¸¦8¯éóIžÝ9qgƒB—÷/£ÏŸq,
-ú3 )è
-ÆJG’±šÚæÇ5Žî’ahø4F‹R"<ijz³Hyv¬‡TƒÕVûî	f÷üýnZÌÚàjC!þÆ*“9U–URø
-戻dñ5õ@…ß0F‹M]z³5°Û&[˜Úª)\•ošCÓ_q]ÕÊ–:é'8–˜ï?…ãšm’/ »7ª.íõkYåœûUÎvÌyfm=çc’´üŸwt~ôÞ7Ÿ:RT®…Äþ/ìp°Ö“Aëû)þBAn¬’ú Õö²ÀsÇ¡Yîl×gÑ?Œæ¤2²ý™lغÔp´ø)ض‰]*.Á’óùr'}ØQ÷¶Ÿ>68fxô(jZÓÖ-ŸvdpÀ¹Ã¶£qM”…!-&VšzÆ)ég^ÿû:mfH¢—/´xÃÏŒ@9M}u¡¶àJù¨ó¿
-H2ð3Cv„‚(¶9ÌPÌùyhÂ„)í‘ŽòzrkeÂÀåµ ~ú*9JôÅo#ÿŠî
-ç<þzêdñ"ˆ‘DKNÌåÅÚVQÄmïCŸéè•®ÌuOùûèà‡ìCø.ºÊ9û—锘P™ê²]qÙ6»Ëš¦ƒ´KMu’¨¢l†vþFµoìo°Ù†—“úȝÂVŠùg!w+ªó­pa€iÙ$¬è恉NÀéŸ]J;40âÂþö‰T«φt‰jV܇NǼ{Mgëï\t<¦ŸZ§ÄrÙ¦ÆêSß¡¨³ùD÷¶Ô6äd'È_D?dh+¹І¡‹1ý„‚”:Þi¬á?ñ
-X¸n©wuÃå•äö1À-)zã©‘¬UœÎ*¸™úhÙûôBôq~óç‰m
+TÒh>îàuFmÚ´¸.¾Î?e¶RÁèlf´Š:pLO-Gþqrb+ä÷æÇý‰"<ŠRÃ>;Öø»tåCa|~¢§{Xjttû¨c¦Á‰s±ðVU•Ëf•UÁ:ö;ÁLày–dÌœ}:îIKL ª ÁŽhk±óyªgÞh"¨~y	sMl}W2¨WÌ‚ŠÞs¹*ƒ‡
+^LcRÏ:o©>?°5mÍ´6*¸§|zH°«µÏßp¾I°ö=¾Y‚5 b˜È:+”Ȧ}ÂëH¤œv,\ÓGœ×ôù$Ï³A¡Ëû—ÑçÏ8ý€tc	¥#HIwÇÔƒXMmóãGwÉ04|£E)‘âY=áY¤<;ÖCªÁê«}÷³{þþ…	7-fmpµ¡c•Iœ*Ë*)|sÄ]²øšúG Âo£Å¦.½ÙØm“-LmÕ®Ê7͡鯸®jeKôKÌ÷ŸÂqÍ6ɐÝU—vŠúµ¬rÎý*g;æ<³¶È‚ó1IZþ‰ƒÏ;:?zï‚O)*×ÂHbÿö
+8XëI‡ õ}ƒ!‚ 7VI}€j{Yà9‰ãÐ,w¶ë³èHFsRÙþL¶l]j8Züì
+ÛÄ.• —`Éù|¹“>ì¨{ÛŽO3<zµ
+­ië–O;²‚8àÜaÛѸ&JˆBŠ“ŽF+ÍŠ=ã”tƒ3¯ÿ}63$ÑËZ¼ágF œ¦¾ºP[p¥|Ôù_¤ˆø™!;BAÛ…f(æü‰<´Na”öHGy=9Œµ2aàòZP?H}•%úâ·‘Ew…s=u²xďH¢%'f†òbm«(Hâ¶÷¡ÏtôJWæ:Œ'Šü}tðCö!|]eŒœýËtÊL¨LuÙ®¸l›ÝeMÓAÚ¥¦:ɍ TÑŒG6C;£Ú7ö7ØìFÃËI}	äNa+Åü³»Õ…€ùV¸0À´lVtóÀD'àôbÜ.¥Çƒ˜qa„
+ûDªÕŽgCºD5+îC§cÞ½¦³õ…w.:ÓÏ­Sb¹‹lScõ©ƒ@ƒïPÔÙü¢û[jr²ä/¢H2´•ÜhÃÐÅÈ~BAJï4ÖðŸx,Ü·ÔλŽºáòJrûà–½ñÔHÖ*NgÜL}´ì}z!ú8¿ùS‰o
 endstream
 endobj
-78 0 obj <<
+74 0 obj <<
 /Type /Page
-/Contents 80 0 R
-/Resources 79 0 R
+/Contents 76 0 R
+/Resources 75 0 R
 /MediaBox [0 0 612 792]
-/Parent 90 0 R
+/Parent 86 0 R
 >> endobj
-81 0 obj <<
-/D [78 0 R /XYZ 132.768 705.06 null]
+77 0 obj <<
+/D [74 0 R /XYZ 132.768 705.06 null]
 >> endobj
-82 0 obj <<
-/D [78 0 R /XYZ 133.768 667.198 null]
+78 0 obj <<
+/D [74 0 R /XYZ 133.768 667.198 null]
 >> endobj
-79 0 obj <<
-/Font << /F42 83 0 R /F19 84 0 R /F49 85 0 R /F54 86 0 R /F59 87 0 R /F61 88 0 R /F8 89 0 R >>
+75 0 obj <<
+/Font << /F42 79 0 R /F19 80 0 R /F49 81 0 R /F54 82 0 R /F59 83 0 R /F61 84 0 R /F8 85 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-112 0 obj <<
-/Length 1010      
+107 0 obj <<
+/Length 939       
 /Filter /FlateDecode
 >>
 stream
-xÚíXKOÛ@¾ó+|´6Þ—½{ª(¯¶§
-õ€z0!K	‰D}gfwÇ	„V€”ƒã×î¬÷›ù¾™Iƒ48?HÝùkïàð,Ï&!3ôn&D’g:ÈTžp¡‚ÞMpO"ÞG‚…õ ¹šE¿{?JƒjØ‹‹s°˜åILÆ34˜1g‰a¹5Å¢Øp~<¬+°6‰b‘†7p5‡£_—v14î¿3¸Šy–Šg×Ô­%a;FÊ f°®Êܺ	X…ÅYÊExQÔpWââ÷ÅNƒîrš™0‰b•¦x’ƼvÚ`äG0ÖÙ&ËXæ@õO_uhìám»•;·¢Ö·ïíâ|?Cð²æaäü<£Hªfö1=)Éï8¾<*—\
-‹DËÝ:÷áp\Û‡£±GM~…5è¾½ÅΆ˜á`[{Û›ÅX,¸HRi–£Œï£l×(C¡ (UJî ¹ˆ…áÔù³è{hû+ ŠT~Zà^²T¹¨Âúmñ<|´ÈŽ‹ûˆëð	ï<MY
-Ѹ¢¢@¦k|wçß»g•c]1BÎœ¥êò{‹ä%š_º”œ¿ìu é·èö"Azw‚;A˜úîñzEí1j0Ô¢Q¨òyµƒ$̼ FpLIä^2™p-ü<³‹¹@{!{.|Ì–œ{!{]ÈvÕÙ±-(0>ÇåŸE%A`Ÿ ²ý<¶b4ëS87åÁÔÕ
-“z¥PÀºS™wÇ»Àß1¹Cþ%H¸ëV]åÀ{ˆ”²ª/Šë‘o·	åœÔÈß|!ëàtBñÎG 曘µ TÛ8¬&sRo›gqÔ'_GÐÔøÜ
-I±t¿&ó‚ù?h¤M¤§ˆÙÌUïU'R-(¹ŽJ¢®°¥¼ÃfñÖ¦Õl;Žàž˜®]-⍎ê`™dZ4£<ïÚWÊv¢ü…~,ŠÂö'týH…øÝÕDCê}çS{7ÆY+a…R9]_Øâζg§Ïq¡jà”¬$¬Ö&j‘mëüη•Ù΀—³?ê;ÿ¡‡gŒµàÎt’Š¦å+\Ô žeþ}LeؤZ·k%Ù§­DÖz at mÉ<­.Õr	«,ó.—[oK¸¹Ó"ʍƒñ¢©§DðdéÕnÀËüñâP‘¸J7…¶‘nz{º¹PRûºôYZê-i©Ú´üIĹñÅè+ykŒ¹U(Ý_9MëÒOˏã*pùŽÀùâóbÐ$ÿ™•~Wt೜òÅæ`¼4¶¡•o–½#:´ZáT.Åÿ
-Ô
-"­yÍ”L$g 3&MLjü_ƒíÁ§½ƒ¿Œ´±î
+xÚíXKoÛ0¾÷WøhìZO˧¡ëkÛiRìPìà¦Ij /8N‹î׏¤$Çy5M: -ƒcË’Hë#ù‘L‚4¸>IÝýkçäô*Ë&!5:ý€	‘dÚZe	*èÜ·áù$bá8,¬{ÍÓ,úÓùqÂ@PTƒÀ>üº‰:ò$×\£À4ˆ9Kr–YQ,Šs®Âï ƒ‡uÒ&Q,ÒðžæpuëÒ*Cáþ;ƒÛ˜ë4ç¡ØªÓ´TÂqr)ƒ˜^¥Þ¤‚r–rþ*j•¨|\áÖ[UgX&Q¬Òo2ÏwÝ^±ò#[9&ÓL;Pý۝=¼m³rgV4cÏÚáí?#Îcø€•
+»CgçyR5³¯éMIvÇ¥ð=`Q¹dRPš+ø R×wæÃ娍ۅ«‘WMv4nqå@,ç ÛxÙ¯ó±Xp‘¤2_ö2~ô²C½‰‚ T-(¹ƒè"B„SgÏ¢ë¡í®*Rùi{iÉ&På! 
+ê·IijðÉ";*Æ7á3Ž|˜6QdCˆÖ92=ã܃Ÿwï*uÅE8q6T—÷Ø!/…Iñeõ€’󷃽	4ó¾3ž$ˆï.ð$S·Â3Þ­±]CF
+†F4Ung;HÂÌa×”HîE"“	7ÂïË!2ç(âHdÛÜ'ß3æÄ‘ÈvÙA z";·úç¡ü»¨$ìd¶³Ÿç–Œf]rç¦<˜ººaR¯
+XwªüÝñ^Œ`Œ‚˜\¸!PÿDÜu«®rà=FJYÖljânèÉèmB975ô7_PÅ&8Q¼³Ç€ÙkÔ- Õþ ªÉœØÛæY\5ÂÍw45>·BR,ÅopÁìCº OÿCã m"½DÌf®z¯VÒ(%Ђ’밤ж´€9lû6­^`ÛqcŠtãj/tX¯Ë$3
+¨Ízh_)Û‰ò7Ú±·(v
+ÛŸÐó>`wW
+¨÷Oíh„»ÖÜ¥rº(¾°Å)œl·ÎnŸ£¢ªç˜¬$¬6&j¡÷s†vW{RlgÀ›ÙJ|ÔþCO¯kÁ­M’Š¦å+\ÔZ ®µŸ©›T›N­$û´•ÈFì[“p©–KXe#ïf¹õ¶7w\D¹±7Z4õ”žmxµðòüŸ8T$®‡›BÙ‚âeïps®¤Žu鶰lÏ°TÇÂtw¨‰å:«™fJ&’3hŸRž-ýß`íÅ—“‰rP
 endstream
 endobj
-111 0 obj <<
+106 0 obj <<
 /Type /Page
-/Contents 112 0 R
-/Resources 110 0 R
+/Contents 107 0 R
+/Resources 105 0 R
 /MediaBox [0 0 612 792]
-/Parent 90 0 R
-/Annots [ 91 0 R 92 0 R 93 0 R 94 0 R 95 0 R 96 0 R 97 0 R 98 0 R 99 0 R 100 0 R 101 0 R 102 0 R 103 0 R 104 0 R 105 0 R 106 0 R 107 0 R 108 0 R 109 0 R ]
+/Parent 86 0 R
+/Annots [ 87 0 R 88 0 R 89 0 R 90 0 R 91 0 R 92 0 R 93 0 R 94 0 R 95 0 R 96 0 R 97 0 R 98 0 R 99 0 R 100 0 R 101 0 R 102 0 R 103 0 R 104 0 R ]
 >> endobj
-91 0 obj <<
+87 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [132.772 634.321 212.801 643.188]
 /A << /S /GoTo /D (section.1) >>
 >> endobj
-92 0 obj <<
+88 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [147.716 622.366 214.236 631.273]
 /A << /S /GoTo /D (subsection.1.1) >>
 >> endobj
-93 0 obj <<
+89 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [132.772 598.516 347.624 609.315]
 /A << /S /GoTo /D (section.2) >>
 >> endobj
-94 0 obj <<
+90 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [147.716 588.493 214.236 597.4]
 /A << /S /GoTo /D (subsection.2.1) >>
 >> endobj
-95 0 obj <<
+91 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [147.716 574.605 219.367 585.255]
 /A << /S /GoTo /D (subsection.2.2) >>
 >> endobj
-96 0 obj <<
+92 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [147.716 562.65 380.749 573.489]
 /A << /S /GoTo /D (subsection.2.3) >>
 >> endobj
-97 0 obj <<
+93 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [132.772 540.453 299.355 551.532]
 /A << /S /GoTo /D (section.3) >>
 >> endobj
-98 0 obj <<
+94 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [147.716 530.71 214.236 539.616]
 /A << /S /GoTo /D (subsection.3.1) >>
 >> endobj
-99 0 obj <<
+95 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [147.716 516.822 219.367 527.472]
 /A << /S /GoTo /D (subsection.3.2) >>
 >> endobj
-100 0 obj <<
+96 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [147.716 504.867 312.716 515.706]
 /A << /S /GoTo /D (subsection.3.3) >>
 >> endobj
-101 0 obj <<
+97 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [147.716 492.912 322.618 503.751]
 /A << /S /GoTo /D (subsection.3.4) >>
 >> endobj
-102 0 obj <<
+98 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [147.716 480.956 312.735 491.796]
 /A << /S /GoTo /D (subsection.3.5) >>
 >> endobj
-103 0 obj <<
+99 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [132.772 459.039 325.706 469.838]
 /A << /S /GoTo /D (section.4) >>
 >> endobj
-104 0 obj <<
+100 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [147.716 447.083 404.5 457.923]
 /A << /S /GoTo /D (subsection.4.1) >>
 >> endobj
-105 0 obj <<
+101 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [147.716 435.128 247.975 445.968]
 /A << /S /GoTo /D (subsection.4.2) >>
 >> endobj
-106 0 obj <<
+102 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [132.772 413.211 313.791 424.01]
 /A << /S /GoTo /D (section.5) >>
 >> endobj
-107 0 obj <<
+103 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
 /Rect [147.716 403.188 214.236 412.095]
 /A << /S /GoTo /D (subsection.5.1) >>
 >> endobj
-108 0 obj <<
+104 0 obj <<
 /Type /Annot
 /Subtype /Link
 /Border[0 0 0]/H/I/C[1 0 0]
-/Rect [147.716 389.3 301.727 400.139]
+/Rect [147.716 389.3 219.367 399.95]
 /A << /S /GoTo /D (subsection.5.2) >>
 >> endobj
-109 0 obj <<
-/Type /Annot
-/Subtype /Link
-/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [147.716 377.345 346.588 388.184]
-/A << /S /GoTo /D (subsection.5.3) >>
+108 0 obj <<
+/D [106 0 R /XYZ 132.768 705.06 null]
 >> endobj
-113 0 obj <<
-/D [111 0 R /XYZ 132.768 705.06 null]
+110 0 obj <<
+/D [106 0 R /XYZ 133.768 647.382 null]
 >> endobj
-115 0 obj <<
-/D [111 0 R /XYZ 133.768 647.382 null]
->> endobj
-110 0 obj <<
-/Font << /F77 114 0 R /F67 116 0 R /F8 89 0 R /F84 117 0 R /F11 118 0 R >>
+105 0 obj <<
+/Font << /F77 109 0 R /F67 111 0 R /F8 85 0 R /F84 112 0 R /F11 113 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-121 0 obj <<
+116 0 obj <<
 /Length 3013      
 /Filter /FlateDecode
 >>
@@ -355,33 +341,33 @@
 Æ1ó
 endstream
 endobj
-120 0 obj <<
+115 0 obj <<
 /Type /Page
-/Contents 121 0 R
-/Resources 119 0 R
+/Contents 116 0 R
+/Resources 114 0 R
 /MediaBox [0 0 612 792]
-/Parent 90 0 R
+/Parent 86 0 R
 >> endobj
-122 0 obj <<
-/D [120 0 R /XYZ 132.768 705.06 null]
+117 0 obj <<
+/D [115 0 R /XYZ 132.768 705.06 null]
 >> endobj
 2 0 obj <<
-/D [120 0 R /XYZ 133.768 667.198 null]
+/D [115 0 R /XYZ 133.768 667.198 null]
 >> endobj
 6 0 obj <<
-/D [120 0 R /XYZ 133.768 647.382 null]
+/D [115 0 R /XYZ 133.768 647.382 null]
 >> endobj
 10 0 obj <<
-/D [120 0 R /XYZ 133.768 332.852 null]
+/D [115 0 R /XYZ 133.768 332.852 null]
 >> endobj
 14 0 obj <<
-/D [120 0 R /XYZ 133.768 304.216 null]
+/D [115 0 R /XYZ 133.768 304.216 null]
 >> endobj
-119 0 obj <<
-/Font << /F77 114 0 R /F8 89 0 R /F11 118 0 R /F7 123 0 R /F67 116 0 R /F90 124 0 R /F92 125 0 R >>
+114 0 obj <<
+/Font << /F77 109 0 R /F8 85 0 R /F11 113 0 R /F7 118 0 R /F67 111 0 R /F90 119 0 R /F92 120 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-128 0 obj <<
+123 0 obj <<
 /Length 2133      
 /Filter /FlateDecode
 >>
@@ -407,24 +393,24 @@
 ?Å„M¦èÑ‘sèA B-!»Œú<¶w„ECšp¡$Pê‹vÏѤÍê«ùú¢tÕ¬˜¦¥Œl ÔÔé/¥û·!ÉÛŠªhy¾£‡fÊ]ßõYg«ë“ý£þñÂ(¶¶Ææy‡´¤l&Ö]5TX·ü h‡’)‰ÈÕ„…¥6paËž°Üî(u7ØùHpUnƒ¬UÈûéIÑ%›ÁÂs«»Aðâ¤ÓvôK€:š×SJ¢po³mÕäÔéN¡ý½Ì¡D5½±S*!=;j}ºözŠkv&×c/nzð³I¼áaÌç*ÜìõLæ^vâÄ‘Y8 K¾M¸&>b¡fwâ]2À9Î&$4O(!Jò®øªÅñŽ~™”Œmr.å¾^_›”ÎÔ^¼$šTo÷8v‹¥Ê‡ËÐ"€+‹'´90]I½½ø²Õ(
 endstream
 endobj
-127 0 obj <<
+122 0 obj <<
 /Type /Page
-/Contents 128 0 R
-/Resources 126 0 R
+/Contents 123 0 R
+/Resources 121 0 R
 /MediaBox [0 0 612 792]
-/Parent 90 0 R
+/Parent 86 0 R
 >> endobj
-129 0 obj <<
-/D [127 0 R /XYZ 132.768 705.06 null]
+124 0 obj <<
+/D [122 0 R /XYZ 132.768 705.06 null]
 >> endobj
 18 0 obj <<
-/D [127 0 R /XYZ 133.768 617.47 null]
+/D [122 0 R /XYZ 133.768 617.47 null]
 >> endobj
-126 0 obj <<
-/Font << /F8 89 0 R /F77 114 0 R /F84 117 0 R /F11 118 0 R /F90 124 0 R /F67 116 0 R /F95 130 0 R >>
+121 0 obj <<
+/Font << /F8 85 0 R /F77 109 0 R /F84 112 0 R /F11 113 0 R /F90 119 0 R /F67 111 0 R /F95 125 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-135 0 obj <<
+130 0 obj <<
 /Length 1133      
 /Filter /FlateDecode
 >>
@@ -438,27 +424,27 @@
 ­£&Þ>>| H³2þp`D>Ën率U‡Wpè}›Wc檽ˆŸeüÌ8ŽfŽ£­ÝèMÛÉÊÜêD%¸J…‘c‹ƒ‚€ñBž¶à”(P¸¦’IÃF=Ä¯<ÊA™‡dØ"G`v];x(û‰<4.~âklSmFØ›z%—\d[vÛ‡WÇ$¾»ü€ÂaÞ¼†‡¸}†;!~윫0	´ü{ ÷ñÁÏ¢òÌUuÀª.é•ê«0»_Eëž[ê$›ÇOü¨\ýÿ¨0FÿÀÈÑ%gÓ{êÕ݈—KB |f¿Ù>~K®Þ1 ŠU™T•i:Õ'o¾õCÒ˜I9´Çd+„ºë8q.´N°µ¿Äp+¹îqàIÙyZ?~~‚Þ '^íïò(¡…W¾ÿa1´4)¿~Á8%#×#Ñ&42tñÆLtj˜˜ï' NùʍrE"Q:ñhé&RëÿˆÀž9
 endstream
 endobj
-134 0 obj <<
+129 0 obj <<
 /Type /Page
-/Contents 135 0 R
-/Resources 133 0 R
+/Contents 130 0 R
+/Resources 128 0 R
 /MediaBox [0 0 612 792]
-/Parent 90 0 R
+/Parent 86 0 R
 >> endobj
-131 0 obj <<
+126 0 obj <<
 /Type /XObject
 /Subtype /Form
 /FormType 1
 /PTEX.FileName (./figs/findclust-pca.pdf)
 /PTEX.PageNumber 1
-/PTEX.InfoDict 137 0 R
+/PTEX.InfoDict 132 0 R
 /BBox [0 0 504 504]
 /Resources <<
 /ProcSet [ /PDF /Text ]
-/Font << /F1 138 0 R/F2 139 0 R/F3 140 0 R>>
+/Font << /F1 133 0 R/F2 134 0 R/F3 135 0 R>>
 /ExtGState <<
 >>/ColorSpace <<
-/sRGB 141 0 R
+/sRGB 136 0 R
 >>>>
 /Length 8569
 >>
@@ -872,7 +858,7 @@
 Q
 endstream
 endobj
-137 0 obj
+132 0 obj
 <<
 /CreationDate (D:20110526125101)
 /ModDate (D:20110526125101)
@@ -881,7 +867,7 @@
 /Creator (R)
 >>
 endobj
-138 0 obj
+133 0 obj
 <<
 /Type /Font
 /Subtype /Type1
@@ -889,35 +875,35 @@
 /BaseFont /ZapfDingbats
 >>
 endobj
-139 0 obj
+134 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /Name /F2
 /BaseFont /Helvetica
-/Encoding 142 0 R
+/Encoding 137 0 R
 >>
 endobj
-140 0 obj
+135 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /Name /F3
 /BaseFont /Helvetica-Bold
-/Encoding 142 0 R
+/Encoding 137 0 R
 >>
 endobj
-141 0 obj
-[/ICCBased 143 0 R]
+136 0 obj
+[/ICCBased 138 0 R]
 endobj
-142 0 obj
+137 0 obj
 <<
 /Type /Encoding
 /BaseEncoding /WinAnsiEncoding
 /Differences [ 45/minus 96/quoteleft 144/dotlessi/grave/acute/circumflex/tilde/macron/breve/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut/ogonek/caron/space]
 >>
 endobj
-143 0 obj
+138 0 obj
 <<
 /N 3
 /Alternate /DeviceRGB
@@ -1124,15 +1110,15 @@
 fe 4b fe dc ff 6d ff ff >
 endstream
 endobj
-136 0 obj <<
-/D [134 0 R /XYZ 132.768 705.06 null]
+131 0 obj <<
+/D [129 0 R /XYZ 132.768 705.06 null]
 >> endobj
-133 0 obj <<
-/Font << /F84 117 0 R /F8 89 0 R /F11 118 0 R /F95 130 0 R >>
-/XObject << /Im1 131 0 R >>
+128 0 obj <<
+/Font << /F84 112 0 R /F8 85 0 R /F11 113 0 R /F95 125 0 R >>
+/XObject << /Im1 126 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-146 0 obj <<
+141 0 obj <<
 /Length 947       
 /Filter /FlateDecode
 >>
@@ -1149,27 +1135,27 @@
 -­M-‘@ØB¸BøB„BÄB䦑UIõ‰Âz»SC;iòSoyµçÜì=§úW";øˆ·ÎOúŽK•è¡9Î<n–9¯ÝÁzðžå½ Lt‚7ˆì¦(<]é·ÓÑ_oƒ;%
 endstream
 endobj
-145 0 obj <<
+140 0 obj <<
 /Type /Page
-/Contents 146 0 R
-/Resources 144 0 R
+/Contents 141 0 R
+/Resources 139 0 R
 /MediaBox [0 0 612 792]
-/Parent 90 0 R
+/Parent 86 0 R
 >> endobj
-132 0 obj <<
+127 0 obj <<
 /Type /XObject
 /Subtype /Form
 /FormType 1
 /PTEX.FileName (./figs/findclust-bic.pdf)
 /PTEX.PageNumber 1
-/PTEX.InfoDict 148 0 R
+/PTEX.InfoDict 143 0 R
 /BBox [0 0 504 504]
 /Resources <<
 /ProcSet [ /PDF /Text ]
-/Font << /F1 149 0 R/F2 150 0 R/F3 151 0 R>>
+/Font << /F1 144 0 R/F2 145 0 R/F3 146 0 R>>
 /ExtGState <<
 >>/ColorSpace <<
-/sRGB 152 0 R
+/sRGB 147 0 R
 >>>>
 /Length 4741
 >>
@@ -1413,7 +1399,7 @@
 Q
 endstream
 endobj
-148 0 obj
+143 0 obj
 <<
 /CreationDate (D:20110526145343)
 /ModDate (D:20110526145343)
@@ -1422,7 +1408,7 @@
 /Creator (R)
 >>
 endobj
-149 0 obj
+144 0 obj
 <<
 /Type /Font
 /Subtype /Type1
@@ -1430,35 +1416,35 @@
 /BaseFont /ZapfDingbats
 >>
 endobj
-150 0 obj
+145 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /Name /F2
 /BaseFont /Helvetica
-/Encoding 153 0 R
+/Encoding 148 0 R
 >>
 endobj
-151 0 obj
+146 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /Name /F3
 /BaseFont /Helvetica-Bold
-/Encoding 153 0 R
+/Encoding 148 0 R
 >>
 endobj
-152 0 obj
-[/ICCBased 154 0 R]
+147 0 obj
+[/ICCBased 149 0 R]
 endobj
-153 0 obj
+148 0 obj
 <<
 /Type /Encoding
 /BaseEncoding /WinAnsiEncoding
 /Differences [ 45/minus 96/quoteleft 144/dotlessi/grave/acute/circumflex/tilde/macron/breve/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut/ogonek/caron/space]
 >>
 endobj
-154 0 obj
+149 0 obj
 <<
 /N 3
 /Alternate /DeviceRGB
@@ -1665,15 +1651,15 @@
 fe 4b fe dc ff 6d ff ff >
 endstream
 endobj
-147 0 obj <<
-/D [145 0 R /XYZ 132.768 705.06 null]
+142 0 obj <<
+/D [140 0 R /XYZ 132.768 705.06 null]
 >> endobj
-144 0 obj <<
-/Font << /F8 89 0 R /F11 118 0 R /F84 117 0 R /F95 130 0 R >>
-/XObject << /Im2 132 0 R >>
+139 0 obj <<
+/Font << /F8 85 0 R /F11 113 0 R /F84 112 0 R /F95 125 0 R >>
+/XObject << /Im2 127 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-158 0 obj <<
+153 0 obj <<
 /Length 1326      
 /Filter /FlateDecode
 >>
@@ -1692,27 +1678,27 @@
 XîŒÆŒéé?nh<¤µØž—„Ô472僀ˆ‡R`Hâ°,óçL„T£
 endstream
 endobj
-157 0 obj <<
+152 0 obj <<
 /Type /Page
-/Contents 158 0 R
-/Resources 156 0 R
+/Contents 153 0 R
+/Resources 151 0 R
 /MediaBox [0 0 612 792]
-/Parent 160 0 R
+/Parent 155 0 R
 >> endobj
-155 0 obj <<
+150 0 obj <<
 /Type /XObject
 /Subtype /Form
 /FormType 1
 /PTEX.FileName (./figs/-006.pdf)
 /PTEX.PageNumber 1
-/PTEX.InfoDict 161 0 R
+/PTEX.InfoDict 156 0 R
 /BBox [0 0 432 432]
 /Resources <<
 /ProcSet [ /PDF /Text ]
-/Font << /F2 162 0 R>>
+/Font << /F2 157 0 R>>
 /ExtGState <<
 >>/ColorSpace <<
-/sRGB 163 0 R
+/sRGB 158 0 R
 >>>>
 /Length 4962
 >>
@@ -1954,35 +1940,35 @@
 Q
 endstream
 endobj
-161 0 obj
+156 0 obj
 <<
-/CreationDate (D:20110527165917)
-/ModDate (D:20110527165917)
+/CreationDate (D:20110529181746)
+/ModDate (D:20110529181746)
 /Title (R Graphics Output)
 /Producer (R 2.13.0)
 /Creator (R)
 >>
 endobj
-162 0 obj
+157 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /Name /F2
 /BaseFont /Helvetica
-/Encoding 164 0 R
+/Encoding 159 0 R
 >>
 endobj
-163 0 obj
-[/ICCBased 165 0 R]
+158 0 obj
+[/ICCBased 160 0 R]
 endobj
-164 0 obj
+159 0 obj
 <<
 /Type /Encoding
 /BaseEncoding /WinAnsiEncoding
 /Differences [ 45/minus 96/quoteleft 144/dotlessi/grave/acute/circumflex/tilde/macron/breve/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut/ogonek/caron/space]
 >>
 endobj
-165 0 obj
+160 0 obj
 <<
 /N 3
 /Alternate /DeviceRGB
@@ -2189,15 +2175,15 @@
 fe 4b fe dc ff 6d ff ff >
 endstream
 endobj
-159 0 obj <<
-/D [157 0 R /XYZ 132.768 705.06 null]
+154 0 obj <<
+/D [152 0 R /XYZ 132.768 705.06 null]
 >> endobj
-156 0 obj <<
-/Font << /F95 130 0 R /F8 89 0 R /F11 118 0 R /F84 117 0 R >>
-/XObject << /Im3 155 0 R >>
+151 0 obj <<
+/Font << /F95 125 0 R /F8 85 0 R /F11 113 0 R /F84 112 0 R >>
+/XObject << /Im3 150 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-169 0 obj <<
+164 0 obj <<
 /Length 1698      
 /Filter /FlateDecode
 >>
@@ -2222,27 +2208,27 @@
 m©»6‰Eãiê¤rÿÉS_ÑÿÎX@
 endstream
 endobj
-168 0 obj <<
+163 0 obj <<
 /Type /Page
-/Contents 169 0 R
-/Resources 167 0 R
+/Contents 164 0 R
+/Resources 162 0 R
 /MediaBox [0 0 612 792]
-/Parent 160 0 R
+/Parent 155 0 R
 >> endobj
-166 0 obj <<
+161 0 obj <<
 /Type /XObject
 /Subtype /Form
 /FormType 1
 /PTEX.FileName (./figs/findclust-noclearcut.pdf)
 /PTEX.PageNumber 1
-/PTEX.InfoDict 171 0 R
+/PTEX.InfoDict 166 0 R
 /BBox [0 0 504 504]
 /Resources <<
 /ProcSet [ /PDF /Text ]
-/Font << /F1 172 0 R/F2 173 0 R/F3 174 0 R>>
+/Font << /F1 167 0 R/F2 168 0 R/F3 169 0 R>>
 /ExtGState <<
 >>/ColorSpace <<
-/sRGB 175 0 R
+/sRGB 170 0 R
 >>>>
 /Length 4713
 >>
@@ -2486,7 +2472,7 @@
 Q
 endstream
 endobj
-171 0 obj
+166 0 obj
 <<
 /CreationDate (D:20110526151206)
 /ModDate (D:20110526151206)
@@ -2495,7 +2481,7 @@
 /Creator (R)
 >>
 endobj
-172 0 obj
+167 0 obj
 <<
 /Type /Font
 /Subtype /Type1
@@ -2503,35 +2489,35 @@
 /BaseFont /ZapfDingbats
 >>
 endobj
-173 0 obj
+168 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /Name /F2
 /BaseFont /Helvetica
-/Encoding 176 0 R
+/Encoding 171 0 R
 >>
 endobj
-174 0 obj
+169 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /Name /F3
 /BaseFont /Helvetica-Bold
-/Encoding 176 0 R
+/Encoding 171 0 R
 >>
 endobj
-175 0 obj
-[/ICCBased 177 0 R]
+170 0 obj
+[/ICCBased 172 0 R]
 endobj
-176 0 obj
+171 0 obj
 <<
 /Type /Encoding
 /BaseEncoding /WinAnsiEncoding
 /Differences [ 45/minus 96/quoteleft 144/dotlessi/grave/acute/circumflex/tilde/macron/breve/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut/ogonek/caron/space]
 >>
 endobj
-177 0 obj
+172 0 obj
 <<
 /N 3
 /Alternate /DeviceRGB
@@ -2738,18 +2724,18 @@
 fe 4b fe dc ff 6d ff ff >
 endstream
 endobj
-170 0 obj <<
-/D [168 0 R /XYZ 132.768 705.06 null]
+165 0 obj <<
+/D [163 0 R /XYZ 132.768 705.06 null]
 >> endobj
 22 0 obj <<
-/D [168 0 R /XYZ 133.768 667.198 null]
+/D [163 0 R /XYZ 133.768 667.198 null]
 >> endobj
-167 0 obj <<
-/Font << /F77 114 0 R /F8 89 0 R /F11 118 0 R >>
-/XObject << /Im4 166 0 R >>
+162 0 obj <<
+/Font << /F77 109 0 R /F8 85 0 R /F11 113 0 R >>
+/XObject << /Im4 161 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-180 0 obj <<
+175 0 obj <<
 /Length 2655      
 /Filter /FlateDecode
 >>
@@ -2778,30 +2764,30 @@
 h|teå×W#èôð”æq8&}ÓŒdÜ®eššB‹p}ShÆé›Ý‰™Î©Û|š4‡õ;LîäuÔÐÔwžÕÏçfða&¹Vz„’ðFÑ@úž]í¶^å^JaJî|gÉëíM«÷aµ»ÎôÑXíp=#þÞþ0L8M%Á©s£«õ¬“~y!IìYÄ— ×ÿŒÚ€ª
 endstream
 endobj
-179 0 obj <<
+174 0 obj <<
 /Type /Page
-/Contents 180 0 R
-/Resources 178 0 R
+/Contents 175 0 R
+/Resources 173 0 R
 /MediaBox [0 0 612 792]
-/Parent 160 0 R
+/Parent 155 0 R
 >> endobj
-181 0 obj <<
-/D [179 0 R /XYZ 132.768 705.06 null]
+176 0 obj <<
+/D [174 0 R /XYZ 132.768 705.06 null]
 >> endobj
 26 0 obj <<
-/D [179 0 R /XYZ 133.768 667.198 null]
+/D [174 0 R /XYZ 133.768 667.198 null]
 >> endobj
 30 0 obj <<
-/D [179 0 R /XYZ 133.768 644.198 null]
+/D [174 0 R /XYZ 133.768 644.198 null]
 >> endobj
 34 0 obj <<
-/D [179 0 R /XYZ 133.768 395.961 null]
+/D [174 0 R /XYZ 133.768 395.961 null]
 >> endobj
-178 0 obj <<
-/Font << /F77 114 0 R /F92 125 0 R /F8 89 0 R /F90 124 0 R /F84 117 0 R /F95 130 0 R /F11 118 0 R >>
+173 0 obj <<
+/Font << /F77 109 0 R /F92 120 0 R /F8 85 0 R /F90 119 0 R /F84 112 0 R /F95 125 0 R /F11 113 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-185 0 obj <<
+180 0 obj <<
 /Length 639       
 /Filter /FlateDecode
 >>
@@ -2814,22 +2800,22 @@
 ’—×iœ9>Ü.4_4ÙÑðØK…;›peæ×gãÇÓĝ¦Ãß*só±2FZ«!”B¶44Š’ð}.TMÁñâÀÄíiÐQ8ösúŽ¾ VÅQ¼|¥ESKUj‘—ÖJ«+&TÅ3Ї6ùUaî
 endstream
 endobj
-184 0 obj <<
+179 0 obj <<
 /Type /Page
-/Contents 185 0 R
-/Resources 183 0 R
+/Contents 180 0 R
+/Resources 178 0 R
 /MediaBox [0 0 612 792]
-/Parent 160 0 R
+/Parent 155 0 R
 >> endobj
-186 0 obj <<
-/D [184 0 R /XYZ 132.768 705.06 null]
+181 0 obj <<
+/D [179 0 R /XYZ 132.768 705.06 null]
 >> endobj
-183 0 obj <<
-/Font << /F8 89 0 R /F84 117 0 R >>
-/XObject << /Im1 131 0 R >>
+178 0 obj <<
+/Font << /F8 85 0 R /F84 112 0 R >>
+/XObject << /Im1 126 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-189 0 obj <<
+184 0 obj <<
 /Length 1465      
 /Filter /FlateDecode
 >>
@@ -2847,27 +2833,27 @@
 •çŽrîN¶|ûq³úš3¨J
 endstream
 endobj
-188 0 obj <<
+183 0 obj <<
 /Type /Page
-/Contents 189 0 R
-/Resources 187 0 R
+/Contents 184 0 R
+/Resources 182 0 R
 /MediaBox [0 0 612 792]
-/Parent 160 0 R
+/Parent 155 0 R
 >> endobj
-182 0 obj <<
+177 0 obj <<
 /Type /XObject
 /Subtype /Form
 /FormType 1
 /PTEX.FileName (./figs/eigen-dapc.pdf)
 /PTEX.PageNumber 1
-/PTEX.InfoDict 191 0 R
+/PTEX.InfoDict 186 0 R
 /BBox [0 0 504 504]
 /Resources <<
 /ProcSet [ /PDF /Text ]
-/Font << /F2 192 0 R/F3 193 0 R>>
+/Font << /F2 187 0 R/F3 188 0 R>>
 /ExtGState <<
 >>/ColorSpace <<
-/sRGB 194 0 R
+/sRGB 189 0 R
 >>>>
 /Length 1295
 >>
@@ -2932,7 +2918,7 @@
 Q
 endstream
 endobj
-191 0 obj
+186 0 obj
 <<
 /CreationDate (D:20110526164308)
 /ModDate (D:20110526164308)
@@ -2941,35 +2927,35 @@
 /Creator (R)
 >>
 endobj
-192 0 obj
+187 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /Name /F2
 /BaseFont /Helvetica
-/Encoding 195 0 R
+/Encoding 190 0 R
 >>
 endobj
-193 0 obj
+188 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /Name /F3
 /BaseFont /Helvetica-Bold
-/Encoding 195 0 R
+/Encoding 190 0 R
 >>
 endobj
-194 0 obj
-[/ICCBased 196 0 R]
+189 0 obj
+[/ICCBased 191 0 R]
 endobj
-195 0 obj
+190 0 obj
 <<
 /Type /Encoding
 /BaseEncoding /WinAnsiEncoding
 /Differences [ 45/minus 96/quoteleft 144/dotlessi/grave/acute/circumflex/tilde/macron/breve/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut/ogonek/caron/space]
 >>
 endobj
-196 0 obj
+191 0 obj
 <<
 /N 3
 /Alternate /DeviceRGB
@@ -3176,15 +3162,15 @@
 fe 4b fe dc ff 6d ff ff >
 endstream
 endobj
-190 0 obj <<
-/D [188 0 R /XYZ 132.768 705.06 null]
+185 0 obj <<
+/D [183 0 R /XYZ 132.768 705.06 null]
 >> endobj
-187 0 obj <<
-/Font << /F8 89 0 R /F84 117 0 R /F95 130 0 R >>
-/XObject << /Im5 182 0 R >>
+182 0 obj <<
+/Font << /F8 85 0 R /F84 112 0 R /F95 125 0 R >>
+/XObject << /Im5 177 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-200 0 obj <<
+195 0 obj <<
 /Length 1751      
 /Filter /FlateDecode
 >>
@@ -3207,27 +3193,27 @@
 ´F¥ŠJàÿþo2¨£ þ—4IdÜ7`s%˜î}h°Ï'ï ¾w'^!¨ ™ð„[Å;ŸN¼ÓM<ÂÕšMhNx·ç!'íw8Ù_ò|{ðÉMÛŸËX¥Ú6Än?{tøý‘útô6ò0f߯ù@û5ÓøH^u3‰wþ‘×Ú÷êÁ†©àô£¯düÔc2)“FÜ_û>x%TGŸ§N'dürÉ, >”·ç!Šÿº¬ÓϨ	½ä©¢ñ]D‘ë ÿÕ!®i¼Ã&´O<=‹5wÔ;àY¬õ5>â,ç6$œÍóolGÿ9…!Íñ¶ïÿFßxósBäÀONÁÞ~»”ú‚mƒj^Lïq|˜ä%(*ZßãÊc°åë'\¥²ÌþwÕ~•…SÖq“鯽(”—3œ¾åk5Dtù=|k•[¿9Gf×ðgÛ†*â[©’­z¦–3Šzòç€é¨ã$k5³V YZH?ÚÀÓºT¹ÿîþnFxÐ
 endstream
 endobj
-199 0 obj <<
+194 0 obj <<
 /Type /Page
-/Contents 200 0 R
-/Resources 198 0 R
+/Contents 195 0 R
+/Resources 193 0 R
 /MediaBox [0 0 612 792]
-/Parent 160 0 R
+/Parent 155 0 R
 >> endobj
-197 0 obj <<
+192 0 obj <<
 /Type /XObject
 /Subtype /Form
 /FormType 1
 /PTEX.FileName (./figs/-010.pdf)
 /PTEX.PageNumber 1
-/PTEX.InfoDict 202 0 R
+/PTEX.InfoDict 197 0 R
 /BBox [0 0 432 432]
 /Resources <<
 /ProcSet [ /PDF /Text ]
-/Font << /F1 203 0 R/F2 204 0 R>>
+/Font << /F1 198 0 R/F2 199 0 R>>
 /ExtGState <<
 >>/ColorSpace <<
-/sRGB 205 0 R
+/sRGB 200 0 R
 >>>>
 /Length 105263
 >>
@@ -7804,16 +7790,16 @@
 Q
 endstream
 endobj
-202 0 obj
+197 0 obj
 <<
-/CreationDate (D:20110527165917)
-/ModDate (D:20110527165917)
+/CreationDate (D:20110529181746)
+/ModDate (D:20110529181746)
 /Title (R Graphics Output)
 /Producer (R 2.13.0)
 /Creator (R)
 >>
 endobj
-203 0 obj
+198 0 obj
 <<
 /Type /Font
 /Subtype /Type1
@@ -7821,26 +7807,26 @@
 /BaseFont /ZapfDingbats
 >>
 endobj
-204 0 obj
+199 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /Name /F2
 /BaseFont /Helvetica
-/Encoding 206 0 R
+/Encoding 201 0 R
 >>
 endobj
-205 0 obj
-[/ICCBased 207 0 R]
+200 0 obj
+[/ICCBased 202 0 R]
 endobj
-206 0 obj
+201 0 obj
 <<
 /Type /Encoding
 /BaseEncoding /WinAnsiEncoding
 /Differences [ 45/minus 96/quoteleft 144/dotlessi/grave/acute/circumflex/tilde/macron/breve/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut/ogonek/caron/space]
 >>
 endobj
-207 0 obj
+202 0 obj
 <<
 /N 3
 /Alternate /DeviceRGB
@@ -8047,18 +8033,18 @@
 fe 4b fe dc ff 6d ff ff >
 endstream
 endobj
-201 0 obj <<
-/D [199 0 R /XYZ 132.768 705.06 null]
+196 0 obj <<
+/D [194 0 R /XYZ 132.768 705.06 null]
 >> endobj
 38 0 obj <<
-/D [199 0 R /XYZ 133.768 192.845 null]
+/D [194 0 R /XYZ 133.768 192.845 null]
 >> endobj
-198 0 obj <<
-/Font << /F95 130 0 R /F8 89 0 R /F84 117 0 R /F77 114 0 R >>
-/XObject << /Im6 197 0 R >>
+193 0 obj <<
+/Font << /F95 125 0 R /F8 85 0 R /F84 112 0 R /F77 109 0 R >>
+/XObject << /Im6 192 0 R >>
 /ProcSet [ /PDF /Text ]
 >> endobj
-212 0 obj <<
+207 0 obj <<
 /Length 1326      
 /Filter /FlateDecode
 >>
@@ -8077,27 +8063,27 @@
 мíøéìû‡±×ëÿ+~Êþ5?-'¼û¡ävð|PÓæå_”÷zJÖgýl_£'mÕ½0!uкûžO˜îýŒÀ¬òÿIPð—•~Ís®ýRAf
 endstream
 endobj
-211 0 obj <<
+206 0 obj <<
 /Type /Page
-/Contents 212 0 R
-/Resources 210 0 R
+/Contents 207 0 R
+/Resources 205 0 R
 /MediaBox [0 0 612 792]
-/Parent 214 0 R
+/Parent 209 0 R
 >> endobj
-208 0 obj <<
+203 0 obj <<
 /Type /XObject
 /Subtype /Form
 /FormType 1
 /PTEX.FileName (./figs/-011.pdf)
 /PTEX.PageNumber 1
-/PTEX.InfoDict 215 0 R
+/PTEX.InfoDict 210 0 R
 /BBox [0 0 432 432]
 /Resources <<
 /ProcSet [ /PDF /Text ]
-/Font << /F1 216 0 R/F2 217 0 R>>
+/Font << /F1 211 0 R/F2 212 0 R>>
 /ExtGState <<
 >>/ColorSpace <<
-/sRGB 218 0 R
+/sRGB 213 0 R
 >>>>
 /Length 101297
 >>
@@ -12740,16 +12726,16 @@
 Q
 endstream
 endobj
-215 0 obj
+210 0 obj
 <<
-/CreationDate (D:20110527165917)
-/ModDate (D:20110527165917)
+/CreationDate (D:20110529181747)
+/ModDate (D:20110529181747)
 /Title (R Graphics Output)
 /Producer (R 2.13.0)
 /Creator (R)
 >>
 endobj
-216 0 obj
+211 0 obj
 <<
 /Type /Font
 /Subtype /Type1
@@ -12757,26 +12743,26 @@
 /BaseFont /ZapfDingbats
 >>
 endobj
-217 0 obj
+212 0 obj
 <<
 /Type /Font
 /Subtype /Type1
 /Name /F2
 /BaseFont /Helvetica
-/Encoding 219 0 R
+/Encoding 214 0 R
 >>
 endobj
-218 0 obj
-[/ICCBased 220 0 R]
+213 0 obj
+[/ICCBased 215 0 R]
 endobj
-219 0 obj
+214 0 obj
 <<
 /Type /Encoding
 /BaseEncoding /WinAnsiEncoding
 /Differences [ 45/minus 96/quoteleft 144/dotlessi/grave/acute/circumflex/tilde/macron/breve/dotaccent/dieresis/.notdef/ring/cedilla/.notdef/hungarumlaut/ogonek/caron/space]
 >>
 endobj
-220 0 obj
+215 0 obj
 <<
 /N 3
 /Alternate /DeviceRGB
@@ -12983,52 +12969,50 @@
 fe 4b fe dc ff 6d ff ff >
 endstream
 endobj
-213 0 obj <<
-/D [211 0 R /XYZ 132.768 705.06 null]
+208 0 obj <<
[TRUNCATED]

To get the complete diff run:
    svnlook diff /svnroot/adegenet -r 886


More information about the adegenet-commits mailing list