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

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Thu May 26 18:12:42 CEST 2011


Author: jombart
Date: 2011-05-26 18:12:41 +0200 (Thu, 26 May 2011)
New Revision: 881

Added:
   pkg/inst/doc/.RData
   pkg/inst/doc/Robjects/dapc1.RData
   pkg/inst/doc/Robjects/grp.RData
   pkg/inst/doc/figs/-006.pdf
   pkg/inst/doc/figs/-010.pdf
   pkg/inst/doc/figs/Rplots.pdf
   pkg/inst/doc/figs/adegenet-dapc-006.pdf
   pkg/inst/doc/figs/adegenet-dapc-010.pdf
   pkg/inst/doc/figs/eigen-dapc.pdf
   pkg/inst/doc/figs/findclust-bic.pdf
   pkg/inst/doc/figs/findclust-noclearcut.pdf
   pkg/inst/doc/figs/findclust-pca.pdf
Modified:
   pkg/inst/doc/adegenet-dapc.Rnw
Log:
Moving forward in the DAPC tutorial.


Added: pkg/inst/doc/.RData
===================================================================
(Binary files differ)


Property changes on: pkg/inst/doc/.RData
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Added: pkg/inst/doc/Robjects/dapc1.RData
===================================================================
(Binary files differ)


Property changes on: pkg/inst/doc/Robjects/dapc1.RData
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Added: pkg/inst/doc/Robjects/grp.RData
===================================================================
(Binary files differ)


Property changes on: pkg/inst/doc/Robjects/grp.RData
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Modified: pkg/inst/doc/adegenet-dapc.Rnw
===================================================================
--- pkg/inst/doc/adegenet-dapc.Rnw	2011-05-26 13:20:07 UTC (rev 880)
+++ pkg/inst/doc/adegenet-dapc.Rnw	2011-05-26 16:12:41 UTC (rev 881)
@@ -35,7 +35,9 @@
 \begin{document}
 
 
+\SweaveOpts{prefix.string = figs/, echo=TRUE, eval=TRUE, fig = FALSE, eps = FALSE, pdf = TRUE}
 
+
 \definecolor{Soutput}{rgb}{0,0,0.56}
 \definecolor{Sinput}{rgb}{0.56,0,0}
 \DefineVerbatimEnvironment{Sinput}{Verbatim}
@@ -161,6 +163,9 @@
 \texttt{x} is a dataset of 600 individuals simulated under an 6 island model for 30 microsatellite markers.
 We use \code{find.clusters} to identify clusters, although true clusters are, in this case, known.
 We specify that we want to evaluate up to $k=40$ groups (\texttt{max.n.clust=40}):
+<<eval=TRUE,echo=FALSE>>=
+load("Robjects/grp.RData")
+@
 <<eval=FALSE>>=
 grp <- find.clusters(x, max.n.clust=40)
 @
@@ -185,7 +190,28 @@
 should be retained. In practice, the choice is often trickier to make.
 \\
 
+The output of \texttt{find.clusters} is a list:
+<<>>=
+names(grp)
+head(grp$Kstat, 8)
+grp$stat
+head(grp$grp, 10)
+grp$size
+@
 
+The components are respectively the chosen summary statistics (here, BIC) for different values of
+$k$ (slot \texttt{Kstat}), the selected number of clusters and the associated BIC (slot
+\texttt{stat}), the group memberships (slot \texttt{grp}) and the group sizes (slot \texttt{size}).
+Here, since we knew the actual groups, we can check how well they have been retrieved by the procedure.
+Actual groups are accessed using \texttt{pop}:
+<<fig=TRUE>>=
+table(pop(x), grp$grp)
+table.value(table(pop(x), grp$grp), col.lab=paste("inf", 1:6), row.lab=paste("ori", 1:6))
+@
+Rows correspond to actual groups ("ori''), while columns correspond to inferred groups ("inf'').
+Here, we can see that original groups have nearly been perfectly identified by the method.
+
+
 %%%%%%%%%%%%%%%%
 \subsection{How many clusters are there really in the data?}
 %%%%%%%%%%%%%%%%
@@ -203,7 +229,7 @@
 better, more efficient summaries of the data than others.
 For instance, in the following case:
 \begin{center}
-  \includegraphics[width=.7\textwidth]{figs/findclust-bic.pdf}
+  \includegraphics[width=.7\textwidth]{figs/findclust-noclearcut.pdf}
 \end{center}
 
 \noindent , the concept of "true $k$" is fairly hypothetical. This does not mean that clutering
@@ -214,6 +240,11 @@
 
 
 
+
+
+
+
+
 %%%%%%%%%%%%%%%%
 %%%%%%%%%%%%%%%%
 \section{Describing clusters using \code{dapc}}
@@ -221,23 +252,94 @@
 %%%%%%%%%%%%%%%%
 
 
-
 %%%%%%%%%%%%%%%%
 \subsection{Rationale}
 %%%%%%%%%%%%%%%%
+DAPC aims to provide an efficient description of genetic clusters using a few synthetic variables.
+These are constructed as linear combinations of the original variables (alleles) which have the
+largest between-group variance and the smallest within-group variance. Coefficients of the alleles
+used in the linear combination are called \textit{loadings}, while the synthetic variables are
+themselves referred to as \textit{discriminant functions}.
 
+Moreover, being based on the Discriminant Analysis, DAPC also provides membership probabilities of
+each individual to the different groups based on the retained discriminant functions. While these
+are different from the admixture coefficients of software like STRUCTURE, they can be still be
+interpreted as proximities of individuals to the different clusters. Membership
+probabilities also provide indications of how clear-cut genetic clusters are. Loose clusters will
+result in fairly flat distributions of membership probabilities of individuals across clusters,
+possibly sign of admixture in the case of island models.
 
+Lastly, using the allele loadings, it is possible to represent new individuals (which have not participated to the analysis)
+onto the factorial planes, and derive membership probabilities as welll. Such individuals are
+referred to as \textit{supplementary individuals}.
+
+
+
 %%%%%%%%%%%%%%%%
 \subsection{In practice}
 %%%%%%%%%%%%%%%%
 
+DAPC is implemented by the function \texttt{dapc}, which first transforms the data using PCA, and
+then performs a Discriminant Analysis on the retained principal components. Like
+\texttt{find.clusters}, \texttt{dapc} is a generic function with methods for texttt{data.frame}, and objects with
+the class \texttt{genind} (usual genetic markers) and \texttt{genlight} (genome wide SNP data).
 
+We run the analysis on the previous toy dataset, using the inferred groups stored in \texttt{grp\$grp}:
 
+<<echo=FALSE>>=
+load("Robjects/dapc1.RData")
+@
+<<eval=FALSE>>=
+dapc1 <- dapc(x, grp$grp)
+@
 
+The method displays the same graph of cumulated variance for the PCA step. However, unlike
+$k$-means, DAPC can benefit from not using too many PCs. Indeed, retaining too many components with
+respect to the number of individuals can lead to over-fitting and unstability in the membership
+probabilities returned by the method (see section below about the stability of DAPC results).
 
+\begin{center}
+  \includegraphics[width=.7\textwidth]{figs/findclust-pca.pdf}
+\end{center}
 
+\noindent The bottomline is therefore retaining a few PCs without sacrificing too much information.
+Here, we can see that little information is gained by adding PCs after the first 40. We therefore
+retain 40 PCs.
 
+Then, the method displays a barplot of eigenvalues for the discriminant analysis, asking for a
+number of discriminant functions to retain (unless argument \texttt{n.da} is provided).
+\begin{center}
+  \includegraphics[width=.7\textwidth]{figs/eigen-dapc.pdf}
+\end{center}
 
+For small number of clusters, all eigenvalues can be retained since all discriminant functions can
+be examined without difficulty. Whenever more (say, tens of) clusters are analysed,
+it is likely that the first few dimensions will carry more information than the others, and only
+those can then be retained and interpreted.
+\\
+
+The object \texttt{dapc1} contains a lot of information:
+<<>>=
+dapc1
+@
+
+For details about this content, please read the documentation (\texttt{?dapc}).
+Essentially, the slots \texttt{ind.coord} and \texttt{grp.coord} contain the coordinates of the
+individuals and of the groups used in scatterplots.
+Contributions of the alleles to each discriminant function are stored in the slot \texttt{var.contr}.
+Eigenvalues, corresponding to the ratio of the variance between groups over the variance within
+group for each discriminant function, are stored in \texttt{eig}.
+Basic scatterplots can be obtained using the function \texttt{scatterplot}:
+<<fig=TRUE>>=
+scatter(dapc1)
+@
+
+\noindent The obtained graph represents the individuals as dots and the groups as inertia
+ellipses. Eigenvalues of the analysis are displayed in inset. These graphs are fairly easy to
+customize, as shown below.
+
+
+
 %%%%%%%%%%%%%%%%
 %%%%%%%%%%%%%%%%
 \section{Customizing graphics}
@@ -249,8 +351,43 @@
 \subsection{DAPC scatterplots}
 %%%%%%%%%%%%%%%%
 
+DAPC scatterplots are the main result of DAPC. It is therefore essential to ensure that information
+is displayed efficiently, and if possible to produce pretty figures.
+Possibility are almost unlimited, and here we just illustrate a few possibilities offered by
+\texttt{scatter}. Note that \texttt{scatter} is a generic function, with a dedicated method for
+objects produced by \texttt{dapc}. Documentation of this function can be accessed by typing \texttt{?scatter.dapc}.
 
+We illustrate some graphical possibilities trying to improve the display of the analysis presented
+in the previous section.
+While the default background (grey) allows to visualize rainbow colors (the default palette for the
+groups) more easily, it is not so pretty and is probably better removed for publication purpose.
+We also move the inset to a more appropriate place where it does not cover individuals, and use
+different symbols for the groups.
 
+<<fig=TRUE>>=
+scatter(dapc1, posi="bottomright", grid=FALSE, bg="white", pch=17:22)
+@
+
+\noindent This is still not satisfying: we need to define other colors more visible over a white
+background, and we can remove the segments linking the points to their ellipses:
+<<fig=TRUE>>=
+myCol <- c("darkblue","purple","green","orange","red","blue")
+scatter(dapc1, posi="bottomright", grid=FALSE, bg="white", pch=17:22, cstar=0, axesel=FALSE, lwd=2, col=myCol)
+@
+
+\noindent Another possibility is remove the labels within the ellipses and add a legend to the
+plot. We also use the same symbol for all individuals, but use bigger dots and transparent colours
+to have a better feel for the density of individuals on the factorial plane.
+We also add a customized barplot of eigenvalues in inset:
+<<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)
+add.scatter.eig(dapc1$eig, 5,1,2, posi="bottomright", inset=.03, csub=1)
+@
+
+
+
 %%%%%%%%%%%%%%%%
 \subsection{Group memberships}
 %%%%%%%%%%%%%%%%
@@ -270,9 +407,12 @@
 %%%%%%%%%%%%%%%%
 \subsection{Why DAPC results could vary?}
 %%%%%%%%%%%%%%%%
+ Indeed, retaining too many PCs with respect
+to the number of individuals can lead to over-fitting the discriminant functions: these become so
+"flexible" that they could discriminate almost perfectly any cluster. While scatterplots are usually
+essentially unaltered by this process, membership probabilities can become drastically inflated.
 
 
-
 %%%%%%%%%%%%%%%%
 \subsection{Using the $a$-score}
 %%%%%%%%%%%%%%%%

Added: pkg/inst/doc/figs/-006.pdf
===================================================================
--- pkg/inst/doc/figs/-006.pdf	                        (rev 0)
+++ pkg/inst/doc/figs/-006.pdf	2011-05-26 16:12:41 UTC (rev 881)
@@ -0,0 +1,532 @@
+%PDF-1.4
+%âãÏÓ\r
+1 0 obj
+<<
+/CreationDate (D:20110526171611)
+/ModDate (D:20110526171611)
+/Title (R Graphics Output)
+/Producer (R 2.13.0)
+/Creator (R)
+>>
+endobj
+2 0 obj
+<<
+/Type /Catalog
+/Pages 3 0 R
+>>
+endobj
+7 0 obj
+<<
+/Type /Page
+/Parent 3 0 R
+/Contents 8 0 R
+/Resources 4 0 R
+>>
+endobj
+8 0 obj
+<<
+/Length 9 0 R
+>>
+stream
+1 J 1 j q
+Q q
+Q q
+BT
+/sRGB cs 0.000 0.000 0.000 scn
+/F2 1 Tf 12.00 0.00 -0.00 12.00 387.00 306.82 Tm [(or) -15 (i 1)] TJ
+ET
+Q q 7.20 7.20 379.80 379.80 re W n
+/sRGB CS 0.000 0.000 0.000 SCN
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+387.00 311.04 m 344.80 311.04 l S
+Q q
+BT
+/sRGB cs 0.000 0.000 0.000 scn
+/F2 1 Tf 12.00 0.00 -0.00 12.00 387.00 261.24 Tm [(or) -15 (i 2)] TJ
+ET
+Q q 7.20 7.20 379.80 379.80 re W n
+/sRGB CS 0.000 0.000 0.000 SCN
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+387.00 265.46 m 344.80 265.46 l S
+Q q
+BT
+/sRGB cs 0.000 0.000 0.000 scn
+/F2 1 Tf 12.00 0.00 -0.00 12.00 387.00 215.69 Tm [(or) -15 (i 3)] TJ
+ET
+Q q 7.20 7.20 379.80 379.80 re W n
+/sRGB CS 0.000 0.000 0.000 SCN
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+387.00 219.89 m 344.80 219.89 l S
+Q q
+BT
+/sRGB cs 0.000 0.000 0.000 scn
+/F2 1 Tf 12.00 0.00 -0.00 12.00 387.00 170.09 Tm [(or) -15 (i 4)] TJ
+ET
+Q q 7.20 7.20 379.80 379.80 re W n
+/sRGB CS 0.000 0.000 0.000 SCN
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+387.00 174.31 m 344.80 174.31 l S
+Q q
+BT
+/sRGB cs 0.000 0.000 0.000 scn
+/F2 1 Tf 12.00 0.00 -0.00 12.00 387.00 124.54 Tm [(or) -15 (i 5)] TJ
+ET
+Q q 7.20 7.20 379.80 379.80 re W n
+/sRGB CS 0.000 0.000 0.000 SCN
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+387.00 128.74 m 344.80 128.74 l S
+Q q
+BT
+/sRGB cs 0.000 0.000 0.000 scn
+/F2 1 Tf 12.00 0.00 -0.00 12.00 387.00 78.97 Tm [(or) -15 (i 6)] TJ
+ET
+Q q 7.20 7.20 379.80 379.80 re W n
+/sRGB CS 0.000 0.000 0.000 SCN
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+387.00 83.16 m 344.80 83.16 l S
+Q q
+BT
+/sRGB cs 0.000 0.000 0.000 scn
+/F2 1 Tf 0.00 12.00 -12.00 0.00 53.77 387.00 Tm (inf 1) Tj
+ET
+Q q 7.20 7.20 379.80 379.80 re W n
+/sRGB CS 0.000 0.000 0.000 SCN
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+49.40 387.00 m 49.40 349.02 l S
+Q q
+BT
+/sRGB cs 0.000 0.000 0.000 scn
+/F2 1 Tf 0.00 12.00 -12.00 0.00 104.41 387.00 Tm (inf 2) Tj
+ET
+Q q 7.20 7.20 379.80 379.80 re W n
+/sRGB CS 0.000 0.000 0.000 SCN
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+100.04 387.00 m 100.04 349.02 l S
+Q q
+BT
+/sRGB cs 0.000 0.000 0.000 scn
+/F2 1 Tf 0.00 12.00 -12.00 0.00 154.93 387.00 Tm (inf 3) Tj
+ET
+Q q 7.20 7.20 379.80 379.80 re W n
+/sRGB CS 0.000 0.000 0.000 SCN
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+150.68 387.00 m 150.68 349.02 l S
+Q q
+BT
+/sRGB cs 0.000 0.000 0.000 scn
+/F2 1 Tf 0.00 12.00 -12.00 0.00 205.69 387.00 Tm (inf 4) Tj
+ET
+Q q 7.20 7.20 379.80 379.80 re W n
+/sRGB CS 0.000 0.000 0.000 SCN
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+201.32 387.00 m 201.32 349.02 l S
+Q q
+BT
+/sRGB cs 0.000 0.000 0.000 scn
+/F2 1 Tf 0.00 12.00 -12.00 0.00 256.21 387.00 Tm (inf 5) Tj
+ET
+Q q 7.20 7.20 379.80 379.80 re W n
+/sRGB CS 0.000 0.000 0.000 SCN
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+251.96 387.00 m 251.96 349.02 l S
+Q q
+BT
+/sRGB cs 0.000 0.000 0.000 scn
+/F2 1 Tf 0.00 12.00 -12.00 0.00 306.85 387.00 Tm (inf 6) Tj
+ET
+Q q 7.20 7.20 379.80 379.80 re W n
+/sRGB CS 0.000 0.000 0.000 SCN
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+302.60 387.00 m 302.60 349.02 l S
+/sRGB CS 0.827 0.827 0.827 SCN
+344.80 311.04 m 7.20 311.04 l S
+344.80 265.46 m 7.20 265.46 l S
+344.80 219.89 m 7.20 219.89 l S
+344.80 174.31 m 7.20 174.31 l S
+344.80 128.74 m 7.20 128.74 l S
+344.80 83.16 m 7.20 83.16 l S
+49.40 45.18 m 49.40 349.02 l S
+100.04 45.18 m 100.04 349.02 l S
+150.68 45.18 m 150.68 349.02 l S
+201.32 45.18 m 201.32 349.02 l S
+251.96 45.18 m 251.96 349.02 l S
+302.60 45.18 m 302.60 349.02 l S
+/sRGB CS 0.000 0.000 0.000 SCN
+7.20 45.18 337.60 303.84 re S
+/sRGB cs 0.000 0.000 0.000 scn
+47.94 309.58 2.92 2.92 re f
+48.56 264.62 1.69 1.69 re f
+49.40 219.89 0.00 0.00 re f
+49.40 174.31 0.00 0.00 re f
+48.21 127.54 2.39 2.39 re f
+41.00 74.76 16.80 16.80 re f
+100.04 311.04 0.00 0.00 re f
+100.04 265.46 0.00 0.00 re f
+91.68 211.53 16.71 16.71 re f
+100.04 174.31 0.00 0.00 re f
+100.04 128.74 0.00 0.00 re f
+99.20 82.32 1.69 1.69 re f
+142.37 302.73 16.62 16.62 re f
+150.68 265.46 0.00 0.00 re f
+150.68 219.89 0.00 0.00 re f
+150.68 174.31 0.00 0.00 re f
+149.84 127.89 1.69 1.69 re f
+150.68 83.16 0.00 0.00 re f
+201.32 311.04 0.00 0.00 re f
+201.32 265.46 0.00 0.00 re f
+200.13 218.69 2.39 2.39 re f
+201.32 174.31 0.00 0.00 re f
+193.09 120.51 16.45 16.45 re f
+201.32 83.16 0.00 0.00 re f
+251.96 311.04 0.00 0.00 re f
+251.96 265.46 0.00 0.00 re f
+251.96 219.89 0.00 0.00 re f
+243.52 165.87 16.88 16.88 re f
+250.77 127.54 2.39 2.39 re f
+251.96 83.16 0.00 0.00 re f
+302.60 311.04 0.00 0.00 re f
+294.20 257.07 16.80 16.80 re f
+302.60 219.89 0.00 0.00 re f
+302.60 174.31 0.00 0.00 re f
+302.60 128.74 0.00 0.00 re f
+302.60 83.16 0.00 0.00 re f
+/sRGB cs 1.000 1.000 1.000 scn
+9.59 9.35 146.29 18.72 re B
+BT
+/sRGB cs 0.000 0.000 0.000 scn
+/F2 1 Tf 12.00 0.00 -0.00 12.00 11.99 14.61 Tm ( 10) Tj
+ET
+/sRGB CS 1.000 1.000 1.000 SCN
+28.67 16.05 5.34 5.34 re B
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 34.00 14.61 Tm ( 30) Tj
+ET
+50.68 14.09 9.25 9.25 re B
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 59.93 14.61 Tm ( 50) Tj
+ET
+76.61 12.75 11.94 11.94 re B
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 88.55 14.61 Tm ( 70) Tj
+ET
+105.23 11.65 14.12 14.12 re B
+BT
+/F2 1 Tf 12.00 0.00 -0.00 12.00 119.35 14.61 Tm ( 90) Tj
+ET
+136.03 10.71 16.01 16.01 re B
+Q
+endstream
+endobj
+9 0 obj
+4962
+endobj
+3 0 obj
+<<
+/Type /Pages
+/Kids [
+7 0 R
+]
+/Count 1
+/MediaBox [0 0 432 432]
+>>
+endobj
+4 0 obj
+<<
+/ProcSet [/PDF /Text]
+/Font <</F2 11 0 R >>
+/ExtGState << >>
+/ColorSpace << /sRGB 5 0 R >>
+>>
+endobj
+5 0 obj
+[/ICCBased 6 0 R]
+endobj
+6 0 obj
+<< /N 3 /Alternate /DeviceRGB /Length 9433 /Filter /ASCIIHexDecode >>
+stream
+00 00 0c 48 4c 69 6e 6f 02 10 00 00 6d 6e 74 72
+52 47 42 20 58 59 5a 20 07 ce 00 02 00 09 00 06
+00 31 00 00 61 63 73 70 4d 53 46 54 00 00 00 00
+49 45 43 20 73 52 47 42 00 00 00 00 00 00 00 00
+00 00 00 00 00 00 f6 d6 00 01 00 00 00 00 d3 2d
+48 50 20 20 00 00 00 00 00 00 00 00 00 00 00 00
+00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+00 00 00 11 63 70 72 74 00 00 01 50 00 00 00 33
+64 65 73 63 00 00 01 84 00 00 00 6c 77 74 70 74
+00 00 01 f0 00 00 00 14 62 6b 70 74 00 00 02 04
+00 00 00 14 72 58 59 5a 00 00 02 18 00 00 00 14
+67 58 59 5a 00 00 02 2c 00 00 00 14 62 58 59 5a
+00 00 02 40 00 00 00 14 64 6d 6e 64 00 00 02 54
+00 00 00 70 64 6d 64 64 00 00 02 c4 00 00 00 88
+76 75 65 64 00 00 03 4c 00 00 00 86 76 69 65 77
+00 00 03 d4 00 00 00 24 6c 75 6d 69 00 00 03 f8
+00 00 00 14 6d 65 61 73 00 00 04 0c 00 00 00 24
+74 65 63 68 00 00 04 30 00 00 00 0c 72 54 52 43
+00 00 04 3c 00 00 08 0c 67 54 52 43 00 00 04 3c
+00 00 08 0c 62 54 52 43 00 00 04 3c 00 00 08 0c
+74 65 78 74 00 00 00 00 43 6f 70 79 72 69 67 68
+74 20 28 63 29 20 31 39 39 38 20 48 65 77 6c 65
+74 74 2d 50 61 63 6b 61 72 64 20 43 6f 6d 70 61
+6e 79 00 00 64 65 73 63 00 00 00 00 00 00 00 12
+73 52 47 42 20 49 45 43 36 31 39 36 36 2d 32 2e
+31 00 00 00 00 00 00 00 00 00 00 00 12 73 52 47
+42 20 49 45 43 36 31 39 36 36 2d 32 2e 31 00 00
+00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+58 59 5a 20 00 00 00 00 00 00 f3 51 00 01 00 00
+00 01 16 cc 58 59 5a 20 00 00 00 00 00 00 00 00
+00 00 00 00 00 00 00 00 58 59 5a 20 00 00 00 00
+00 00 6f a2 00 00 38 f5 00 00 03 90 58 59 5a 20
+00 00 00 00 00 00 62 99 00 00 b7 85 00 00 18 da
+58 59 5a 20 00 00 00 00 00 00 24 a0 00 00 0f 84
+00 00 b6 cf 64 65 73 63 00 00 00 00 00 00 00 16
+49 45 43 20 68 74 74 70 3a 2f 2f 77 77 77 2e 69
+65 63 2e 63 68 00 00 00 00 00 00 00 00 00 00 00
+16 49 45 43 20 68 74 74 70 3a 2f 2f 77 77 77 2e
+69 65 63 2e 63 68 00 00 00 00 00 00 00 00 00 00
+00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+00 00 00 00 64 65 73 63 00 00 00 00 00 00 00 2e
+49 45 43 20 36 31 39 36 36 2d 32 2e 31 20 44 65
+66 61 75 6c 74 20 52 47 42 20 63 6f 6c 6f 75 72
+20 73 70 61 63 65 20 2d 20 73 52 47 42 00 00 00
+00 00 00 00 00 00 00 00 2e 49 45 43 20 36 31 39
+36 36 2d 32 2e 31 20 44 65 66 61 75 6c 74 20 52
+47 42 20 63 6f 6c 6f 75 72 20 73 70 61 63 65 20
+2d 20 73 52 47 42 00 00 00 00 00 00 00 00 00 00
+00 00 00 00 00 00 00 00 00 00 00 00 64 65 73 63
+00 00 00 00 00 00 00 2c 52 65 66 65 72 65 6e 63
+65 20 56 69 65 77 69 6e 67 20 43 6f 6e 64 69 74
+69 6f 6e 20 69 6e 20 49 45 43 36 31 39 36 36 2d
+32 2e 31 00 00 00 00 00 00 00 00 00 00 00 2c 52
+65 66 65 72 65 6e 63 65 20 56 69 65 77 69 6e 67
+20 43 6f 6e 64 69 74 69 6f 6e 20 69 6e 20 49 45
+43 36 31 39 36 36 2d 32 2e 31 00 00 00 00 00 00
+00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+00 00 00 00 76 69 65 77 00 00 00 00 00 13 a4 fe
+00 14 5f 2e 00 10 cf 14 00 03 ed cc 00 04 13 0b
+00 03 5c 9e 00 00 00 01 58 59 5a 20 00 00 00 00
+00 4c 09 56 00 50 00 00 00 57 1f e7 6d 65 61 73
+00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00
+00 00 00 00 00 00 00 00 00 00 02 8f 00 00 00 02
+73 69 67 20 00 00 00 00 43 52 54 20 63 75 72 76
+00 00 00 00 00 00 04 00 00 00 00 05 00 0a 00 0f
+00 14 00 19 00 1e 00 23 00 28 00 2d 00 32 00 37
+00 3b 00 40 00 45 00 4a 00 4f 00 54 00 59 00 5e
+00 63 00 68 00 6d 00 72 00 77 00 7c 00 81 00 86
+00 8b 00 90 00 95 00 9a 00 9f 00 a4 00 a9 00 ae
+00 b2 00 b7 00 bc 00 c1 00 c6 00 cb 00 d0 00 d5
+00 db 00 e0 00 e5 00 eb 00 f0 00 f6 00 fb 01 01
+01 07 01 0d 01 13 01 19 01 1f 01 25 01 2b 01 32
+01 38 01 3e 01 45 01 4c 01 52 01 59 01 60 01 67
+01 6e 01 75 01 7c 01 83 01 8b 01 92 01 9a 01 a1
+01 a9 01 b1 01 b9 01 c1 01 c9 01 d1 01 d9 01 e1
+01 e9 01 f2 01 fa 02 03 02 0c 02 14 02 1d 02 26
+02 2f 02 38 02 41 02 4b 02 54 02 5d 02 67 02 71
+02 7a 02 84 02 8e 02 98 02 a2 02 ac 02 b6 02 c1
+02 cb 02 d5 02 e0 02 eb 02 f5 03 00 03 0b 03 16
+03 21 03 2d 03 38 03 43 03 4f 03 5a 03 66 03 72
+03 7e 03 8a 03 96 03 a2 03 ae 03 ba 03 c7 03 d3
+03 e0 03 ec 03 f9 04 06 04 13 04 20 04 2d 04 3b
+04 48 04 55 04 63 04 71 04 7e 04 8c 04 9a 04 a8
+04 b6 04 c4 04 d3 04 e1 04 f0 04 fe 05 0d 05 1c
+05 2b 05 3a 05 49 05 58 05 67 05 77 05 86 05 96
+05 a6 05 b5 05 c5 05 d5 05 e5 05 f6 06 06 06 16
+06 27 06 37 06 48 06 59 06 6a 06 7b 06 8c 06 9d
+06 af 06 c0 06 d1 06 e3 06 f5 07 07 07 19 07 2b
+07 3d 07 4f 07 61 07 74 07 86 07 99 07 ac 07 bf
+07 d2 07 e5 07 f8 08 0b 08 1f 08 32 08 46 08 5a
+08 6e 08 82 08 96 08 aa 08 be 08 d2 08 e7 08 fb
+09 10 09 25 09 3a 09 4f 09 64 09 79 09 8f 09 a4
+09 ba 09 cf 09 e5 09 fb 0a 11 0a 27 0a 3d 0a 54
+0a 6a 0a 81 0a 98 0a ae 0a c5 0a dc 0a f3 0b 0b
+0b 22 0b 39 0b 51 0b 69 0b 80 0b 98 0b b0 0b c8
+0b e1 0b f9 0c 12 0c 2a 0c 43 0c 5c 0c 75 0c 8e
+0c a7 0c c0 0c d9 0c f3 0d 0d 0d 26 0d 40 0d 5a
+0d 74 0d 8e 0d a9 0d c3 0d de 0d f8 0e 13 0e 2e
+0e 49 0e 64 0e 7f 0e 9b 0e b6 0e d2 0e ee 0f 09
+0f 25 0f 41 0f 5e 0f 7a 0f 96 0f b3 0f cf 0f ec
+10 09 10 26 10 43 10 61 10 7e 10 9b 10 b9 10 d7
+10 f5 11 13 11 31 11 4f 11 6d 11 8c 11 aa 11 c9
+11 e8 12 07 12 26 12 45 12 64 12 84 12 a3 12 c3
+12 e3 13 03 13 23 13 43 13 63 13 83 13 a4 13 c5
+13 e5 14 06 14 27 14 49 14 6a 14 8b 14 ad 14 ce
+14 f0 15 12 15 34 15 56 15 78 15 9b 15 bd 15 e0
+16 03 16 26 16 49 16 6c 16 8f 16 b2 16 d6 16 fa
+17 1d 17 41 17 65 17 89 17 ae 17 d2 17 f7 18 1b
+18 40 18 65 18 8a 18 af 18 d5 18 fa 19 20 19 45
+19 6b 19 91 19 b7 19 dd 1a 04 1a 2a 1a 51 1a 77
+1a 9e 1a c5 1a ec 1b 14 1b 3b 1b 63 1b 8a 1b b2
+1b da 1c 02 1c 2a 1c 52 1c 7b 1c a3 1c cc 1c f5
+1d 1e 1d 47 1d 70 1d 99 1d c3 1d ec 1e 16 1e 40
+1e 6a 1e 94 1e be 1e e9 1f 13 1f 3e 1f 69 1f 94
+1f bf 1f ea 20 15 20 41 20 6c 20 98 20 c4 20 f0
+21 1c 21 48 21 75 21 a1 21 ce 21 fb 22 27 22 55
+22 82 22 af 22 dd 23 0a 23 38 23 66 23 94 23 c2
+23 f0 24 1f 24 4d 24 7c 24 ab 24 da 25 09 25 38
+25 68 25 97 25 c7 25 f7 26 27 26 57 26 87 26 b7
+26 e8 27 18 27 49 27 7a 27 ab 27 dc 28 0d 28 3f
+28 71 28 a2 28 d4 29 06 29 38 29 6b 29 9d 29 d0
+2a 02 2a 35 2a 68 2a 9b 2a cf 2b 02 2b 36 2b 69
+2b 9d 2b d1 2c 05 2c 39 2c 6e 2c a2 2c d7 2d 0c
+2d 41 2d 76 2d ab 2d e1 2e 16 2e 4c 2e 82 2e b7
+2e ee 2f 24 2f 5a 2f 91 2f c7 2f fe 30 35 30 6c
+30 a4 30 db 31 12 31 4a 31 82 31 ba 31 f2 32 2a
+32 63 32 9b 32 d4 33 0d 33 46 33 7f 33 b8 33 f1
+34 2b 34 65 34 9e 34 d8 35 13 35 4d 35 87 35 c2
+35 fd 36 37 36 72 36 ae 36 e9 37 24 37 60 37 9c
+37 d7 38 14 38 50 38 8c 38 c8 39 05 39 42 39 7f
+39 bc 39 f9 3a 36 3a 74 3a b2 3a ef 3b 2d 3b 6b
+3b aa 3b e8 3c 27 3c 65 3c a4 3c e3 3d 22 3d 61
+3d a1 3d e0 3e 20 3e 60 3e a0 3e e0 3f 21 3f 61
+3f a2 3f e2 40 23 40 64 40 a6 40 e7 41 29 41 6a
+41 ac 41 ee 42 30 42 72 42 b5 42 f7 43 3a 43 7d
+43 c0 44 03 44 47 44 8a 44 ce 45 12 45 55 45 9a
+45 de 46 22 46 67 46 ab 46 f0 47 35 47 7b 47 c0
+48 05 48 4b 48 91 48 d7 49 1d 49 63 49 a9 49 f0
+4a 37 4a 7d 4a c4 4b 0c 4b 53 4b 9a 4b e2 4c 2a
+4c 72 4c ba 4d 02 4d 4a 4d 93 4d dc 4e 25 4e 6e
+4e b7 4f 00 4f 49 4f 93 4f dd 50 27 50 71 50 bb
+51 06 51 50 51 9b 51 e6 52 31 52 7c 52 c7 53 13
+53 5f 53 aa 53 f6 54 42 54 8f 54 db 55 28 55 75
+55 c2 56 0f 56 5c 56 a9 56 f7 57 44 57 92 57 e0
+58 2f 58 7d 58 cb 59 1a 59 69 59 b8 5a 07 5a 56
+5a a6 5a f5 5b 45 5b 95 5b e5 5c 35 5c 86 5c d6
+5d 27 5d 78 5d c9 5e 1a 5e 6c 5e bd 5f 0f 5f 61
+5f b3 60 05 60 57 60 aa 60 fc 61 4f 61 a2 61 f5
+62 49 62 9c 62 f0 63 43 63 97 63 eb 64 40 64 94
+64 e9 65 3d 65 92 65 e7 66 3d 66 92 66 e8 67 3d
+67 93 67 e9 68 3f 68 96 68 ec 69 43 69 9a 69 f1
+6a 48 6a 9f 6a f7 6b 4f 6b a7 6b ff 6c 57 6c af
+6d 08 6d 60 6d b9 6e 12 6e 6b 6e c4 6f 1e 6f 78
+6f d1 70 2b 70 86 70 e0 71 3a 71 95 71 f0 72 4b
+72 a6 73 01 73 5d 73 b8 74 14 74 70 74 cc 75 28
+75 85 75 e1 76 3e 76 9b 76 f8 77 56 77 b3 78 11
+78 6e 78 cc 79 2a 79 89 79 e7 7a 46 7a a5 7b 04
+7b 63 7b c2 7c 21 7c 81 7c e1 7d 41 7d a1 7e 01
+7e 62 7e c2 7f 23 7f 84 7f e5 80 47 80 a8 81 0a
+81 6b 81 cd 82 30 82 92 82 f4 83 57 83 ba 84 1d
+84 80 84 e3 85 47 85 ab 86 0e 86 72 86 d7 87 3b
+87 9f 88 04 88 69 88 ce 89 33 89 99 89 fe 8a 64
+8a ca 8b 30 8b 96 8b fc 8c 63 8c ca 8d 31 8d 98
+8d ff 8e 66 8e ce 8f 36 8f 9e 90 06 90 6e 90 d6
+91 3f 91 a8 92 11 92 7a 92 e3 93 4d 93 b6 94 20
+94 8a 94 f4 95 5f 95 c9 96 34 96 9f 97 0a 97 75
+97 e0 98 4c 98 b8 99 24 99 90 99 fc 9a 68 9a d5
+9b 42 9b af 9c 1c 9c 89 9c f7 9d 64 9d d2 9e 40
+9e ae 9f 1d 9f 8b 9f fa a0 69 a0 d8 a1 47 a1 b6
+a2 26 a2 96 a3 06 a3 76 a3 e6 a4 56 a4 c7 a5 38
+a5 a9 a6 1a a6 8b a6 fd a7 6e a7 e0 a8 52 a8 c4
+a9 37 a9 a9 aa 1c aa 8f ab 02 ab 75 ab e9 ac 5c
+ac d0 ad 44 ad b8 ae 2d ae a1 af 16 af 8b b0 00
+b0 75 b0 ea b1 60 b1 d6 b2 4b b2 c2 b3 38 b3 ae
+b4 25 b4 9c b5 13 b5 8a b6 01 b6 79 b6 f0 b7 68
+b7 e0 b8 59 b8 d1 b9 4a b9 c2 ba 3b ba b5 bb 2e
+bb a7 bc 21 bc 9b bd 15 bd 8f be 0a be 84 be ff
+bf 7a bf f5 c0 70 c0 ec c1 67 c1 e3 c2 5f c2 db
+c3 58 c3 d4 c4 51 c4 ce c5 4b c5 c8 c6 46 c6 c3
+c7 41 c7 bf c8 3d c8 bc c9 3a c9 b9 ca 38 ca b7
+cb 36 cb b6 cc 35 cc b5 cd 35 cd b5 ce 36 ce b6
+cf 37 cf b8 d0 39 d0 ba d1 3c d1 be d2 3f d2 c1
+d3 44 d3 c6 d4 49 d4 cb d5 4e d5 d1 d6 55 d6 d8
+d7 5c d7 e0 d8 64 d8 e8 d9 6c d9 f1 da 76 da fb
+db 80 dc 05 dc 8a dd 10 dd 96 de 1c de a2 df 29
+df af e0 36 e0 bd e1 44 e1 cc e2 53 e2 db e3 63
+e3 eb e4 73 e4 fc e5 84 e6 0d e6 96 e7 1f e7 a9
+e8 32 e8 bc e9 46 e9 d0 ea 5b ea e5 eb 70 eb fb
+ec 86 ed 11 ed 9c ee 28 ee b4 ef 40 ef cc f0 58
+f0 e5 f1 72 f1 ff f2 8c f3 19 f3 a7 f4 34 f4 c2
+f5 50 f5 de f6 6d f6 fb f7 8a f8 19 f8 a8 f9 38
+f9 c7 fa 57 fa e7 fb 77 fc 07 fc 98 fd 29 fd ba
+fe 4b fe dc ff 6d ff ff >
+endstream
+endobj
+10 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
+11 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Name /F2
+/BaseFont /Helvetica
+/Encoding 10 0 R
+>> endobj
+xref
+0 12
+0000000000 65535 f 
+0000000021 00000 n 
+0000000164 00000 n 
+0000005328 00000 n 
+0000005411 00000 n 
+0000005523 00000 n 
+0000005556 00000 n 
+0000000213 00000 n 
+0000000293 00000 n 
+0000005308 00000 n 
+0000015092 00000 n 
+0000015350 00000 n 
+trailer
+<<
+/Size 12
+/Info 1 0 R
+/Root 2 0 R
+>>
+startxref
+15448
+%%EOF

Added: pkg/inst/doc/figs/-010.pdf
===================================================================
--- pkg/inst/doc/figs/-010.pdf	                        (rev 0)
+++ pkg/inst/doc/figs/-010.pdf	2011-05-26 16:12:41 UTC (rev 881)
@@ -0,0 +1,4876 @@
+%PDF-1.4
+%âãÏÓ\r
+1 0 obj
+<<
+/CreationDate (D:20110526171611)
+/ModDate (D:20110526171611)
+/Title (R Graphics Output)
+/Producer (R 2.13.0)
+/Creator (R)
+>>
+endobj
+2 0 obj
+<<
+/Type /Catalog
+/Pages 3 0 R
+>>
+endobj
+7 0 obj
+<<
+/Type /Page
+/Parent 3 0 R
+/Contents 8 0 R
+/Resources 4 0 R
+>>
+endobj
+8 0 obj
+<<
+/Length 9 0 R
+>>
+stream
+1 J 1 j q
+/sRGB cs 0.745 0.745 0.745 scn
+0 0 432.00 432.00 re f
+Q q
+Q q 1.44 1.44 429.12 429.12 re W n
+/sRGB CS 0.827 0.827 0.827 SCN
+0.75 w
+[] 0 d
+1 J
+1 j
+10.00 M
+41.33 1.44 m 41.33 430.56 l S
+173.23 1.44 m 173.23 430.56 l S
+305.14 1.44 m 305.14 430.56 l S
+1.44 123.87 m 430.56 123.87 l S
+1.44 255.77 m 430.56 255.77 l S
+1.44 387.68 m 430.56 387.68 l S
+/sRGB cs 1.000 1.000 1.000 scn
+/sRGB CS 0.745 0.745 0.745 SCN
+396.86 416.20 67.39 28.72 re B
+BT
+/sRGB cs 0.000 0.000 0.000 scn
+/F2 1 Tf 12.00 0.00 -0.00 12.00 396.86 419.19 Tm ( d = 5 ) Tj
+ET
+/sRGB CS 0.000 0.000 0.000 SCN
+1.44 255.77 m 430.56 255.77 l S
+173.23 1.44 m 173.23 430.56 l S
+/sRGB CS 1.000 0.000 0.000 SCN
+141.65 321.74 m 122.55 299.14 l S
+141.65 321.74 m 149.71 274.39 l S
+141.65 321.74 m 202.70 304.14 l S
+141.65 321.74 m 157.30 246.92 l S
+141.65 321.74 m 130.27 335.67 l S
+141.65 321.74 m 117.36 350.52 l S
+141.65 321.74 m 161.32 344.50 l S
+141.65 321.74 m 113.42 275.38 l S
+141.65 321.74 m 132.75 333.33 l S
+141.65 321.74 m 121.82 349.17 l S
+141.65 321.74 m 117.40 296.72 l S
+141.65 321.74 m 164.21 322.25 l S
+141.65 321.74 m 162.76 302.78 l S
+141.65 321.74 m 142.39 337.54 l S
+141.65 321.74 m 155.72 336.07 l S
+141.65 321.74 m 154.10 331.29 l S
+141.65 321.74 m 130.57 318.02 l S
+141.65 321.74 m 170.10 312.73 l S
+141.65 321.74 m 131.05 272.89 l S
+141.65 321.74 m 145.44 314.85 l S
+141.65 321.74 m 121.28 339.42 l S
+141.65 321.74 m 132.85 310.06 l S
+141.65 321.74 m 104.02 320.16 l S
+141.65 321.74 m 103.49 305.91 l S
+141.65 321.74 m 170.25 311.87 l S
+141.65 321.74 m 157.35 290.92 l S
+141.65 321.74 m 150.88 335.92 l S
+141.65 321.74 m 145.76 334.93 l S
+141.65 321.74 m 152.11 309.21 l S
+141.65 321.74 m 158.10 336.00 l S
+141.65 321.74 m 83.95 320.63 l S
+141.65 321.74 m 161.16 303.88 l S
+141.65 321.74 m 139.14 343.44 l S
+141.65 321.74 m 128.35 307.14 l S
+141.65 321.74 m 117.64 326.30 l S
+141.65 321.74 m 112.13 319.33 l S
+141.65 321.74 m 157.67 304.18 l S
+141.65 321.74 m 150.01 290.00 l S
+141.65 321.74 m 156.34 360.65 l S
+141.65 321.74 m 116.41 322.40 l S
+141.65 321.74 m 136.64 355.54 l S
+141.65 321.74 m 163.74 356.74 l S
+141.65 321.74 m 143.91 337.53 l S
+141.65 321.74 m 146.34 345.48 l S
+141.65 321.74 m 159.75 338.97 l S
+141.65 321.74 m 134.54 331.68 l S
+141.65 321.74 m 115.10 332.16 l S
+141.65 321.74 m 152.36 323.22 l S
+141.65 321.74 m 130.94 329.21 l S
+141.65 321.74 m 124.17 317.43 l S
+141.65 321.74 m 106.72 324.76 l S
+141.65 321.74 m 156.62 286.94 l S
+141.65 321.74 m 164.44 282.65 l S
+141.65 321.74 m 171.35 313.65 l S
+141.65 321.74 m 190.76 333.35 l S
+141.65 321.74 m 177.14 337.67 l S
+141.65 321.74 m 108.23 305.06 l S
+141.65 321.74 m 146.28 334.29 l S
+141.65 321.74 m 158.04 317.56 l S
+141.65 321.74 m 135.77 308.08 l S
+141.65 321.74 m 158.33 322.08 l S
+141.65 321.74 m 147.34 365.24 l S
+141.65 321.74 m 156.39 323.72 l S
+141.65 321.74 m 143.51 314.87 l S
+141.65 321.74 m 143.08 324.47 l S
+141.65 321.74 m 105.36 342.21 l S
+141.65 321.74 m 135.07 359.75 l S
+141.65 321.74 m 122.66 349.36 l S
+141.65 321.74 m 142.75 319.58 l S
+141.65 321.74 m 126.27 312.06 l S
+141.65 321.74 m 123.39 324.26 l S
+141.65 321.74 m 131.81 321.50 l S
+141.65 321.74 m 118.65 314.18 l S
+141.65 321.74 m 136.40 282.55 l S
+141.65 321.74 m 114.57 321.44 l S
+141.65 321.74 m 144.21 345.47 l S
+141.65 321.74 m 118.65 318.80 l S
+141.65 321.74 m 113.71 353.23 l S
+141.65 321.74 m 170.87 327.24 l S
+141.65 321.74 m 154.58 300.22 l S
+141.65 321.74 m 146.00 333.92 l S
+141.65 321.74 m 130.51 332.60 l S
+141.65 321.74 m 186.16 311.13 l S
+141.65 321.74 m 129.23 306.78 l S
+141.65 321.74 m 178.14 336.67 l S
+141.65 321.74 m 190.34 341.88 l S
+141.65 321.74 m 138.70 307.62 l S
+141.65 321.74 m 129.22 341.74 l S
+141.65 321.74 m 139.71 313.70 l S
+141.65 321.74 m 148.32 302.35 l S
+141.65 321.74 m 137.53 311.36 l S
+141.65 321.74 m 158.27 304.70 l S
+141.65 321.74 m 134.09 279.69 l S
+141.65 321.74 m 144.98 313.29 l S
+141.65 321.74 m 192.58 357.97 l S
+141.65 321.74 m 104.24 338.48 l S
+141.65 321.74 m 151.13 333.09 l S
+141.65 321.74 m 131.71 338.46 l S
+141.65 321.74 m 143.38 320.43 l S
+141.65 321.74 m 147.46 360.29 l S
+141.65 321.74 m 143.52 325.81 l S
+141.65 321.74 m 121.58 317.96 l S
+141.65 321.74 m 136.98 282.04 l S
+141.65 321.74 m 125.04 325.67 l S
+141.65 321.74 m 152.57 340.55 l S
+/sRGB CS 1.000 1.000 0.000 SCN
+92.11 231.90 m 116.45 273.55 l S
+92.11 231.90 m 52.47 247.72 l S
+92.11 231.90 m 90.97 257.24 l S
+92.11 231.90 m 93.10 232.68 l S
+92.11 231.90 m 89.97 246.17 l S
+92.11 231.90 m 113.25 235.02 l S
+92.11 231.90 m 84.09 247.97 l S
+92.11 231.90 m 106.80 204.39 l S
+92.11 231.90 m 92.95 240.19 l S
+92.11 231.90 m 104.64 211.75 l S
+92.11 231.90 m 87.38 227.54 l S
+92.11 231.90 m 64.48 240.97 l S
+92.11 231.90 m 88.98 211.73 l S
+92.11 231.90 m 145.00 270.28 l S
+92.11 231.90 m 85.86 236.39 l S
+92.11 231.90 m 97.09 203.29 l S
+92.11 231.90 m 55.01 220.33 l S
+92.11 231.90 m 95.85 289.80 l S
+92.11 231.90 m 99.96 210.31 l S
+92.11 231.90 m 126.26 254.29 l S
+92.11 231.90 m 74.90 234.37 l S
+92.11 231.90 m 77.81 208.70 l S
+92.11 231.90 m 88.64 243.02 l S
+92.11 231.90 m 82.43 241.88 l S
+92.11 231.90 m 79.51 262.63 l S
+92.11 231.90 m 137.95 196.60 l S
+92.11 231.90 m 60.25 224.84 l S
+92.11 231.90 m 96.58 257.30 l S
+92.11 231.90 m 86.93 214.58 l S
+92.11 231.90 m 101.63 229.16 l S
+92.11 231.90 m 93.67 209.31 l S
+92.11 231.90 m 100.92 250.83 l S
+92.11 231.90 m 109.90 237.70 l S
+92.11 231.90 m 116.06 232.76 l S
+92.11 231.90 m 76.94 230.06 l S
+92.11 231.90 m 37.20 246.28 l S
+92.11 231.90 m 90.18 215.66 l S
+92.11 231.90 m 103.97 195.00 l S
+92.11 231.90 m 102.58 269.52 l S
+92.11 231.90 m 120.45 196.12 l S
+92.11 231.90 m 43.87 199.15 l S
+92.11 231.90 m 102.06 227.39 l S
+92.11 231.90 m 73.86 281.85 l S
+92.11 231.90 m 67.52 190.70 l S
+92.11 231.90 m 116.08 148.92 l S
+92.11 231.90 m 100.55 263.82 l S
+92.11 231.90 m 106.67 177.99 l S
+92.11 231.90 m 64.07 233.69 l S
+92.11 231.90 m 88.38 250.54 l S
[TRUNCATED]

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


More information about the adegenet-commits mailing list