Skip to content

Commit 7d48233

Browse files
committed
updates
1 parent a0faf6b commit 7d48233

13 files changed

+101
-24
lines changed

ChangeLog

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
2014-05-31: Ver. 0.1-7
1+
2014-06-21: Ver. 0.1-7
22
* Migrate to MS-MPI.
3+
* Get rid of jss.cls and jss.bst.
34

45
2014-02-02: Ver. 0.1-6
56
* Add I/O demo to read data and dump clustering results.

DESCRIPTION

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Package: pmclust
22
Version: 0.1-7
3-
Date: 2014-05-31
3+
Date: 2014-05-24
44
Title: Parallel Model-Based Clustering
55
Authors@R: c(person("Wei-Chen", "Chen", role = c("aut", "cre"), email =
66
"[email protected]"), person("George", "Ostrouchov", role = "aut"))
7-
Depends: R (>= 3.0.0), methods, rlecuyer, pbdMPI (>= 0.2-4), MASS
7+
Depends: R (>= 3.0.0), methods, rlecuyer, pbdMPI (>= 0.2-3), MASS
88
Enhances: MixSim, pbdSLAP (>= 0.1-9), pbdBASE (>= 0.3-0), pbdDMAT (>=
99
0.3-0)
1010
LazyLoad: yes
@@ -25,7 +25,7 @@ URL: http://r-pbd.org/
2525
BugReports: http://group.r-pbd.org/
2626
MailingList: Please send questions and comments regarding pbdR to
2727
28-
Packaged: 2014-05-24 20:19:44 UTC; snoweye
28+
Packaged: 2014-06-21 18:25:53 UTC; snoweye
2929
Author: Wei-Chen Chen [aut, cre],
3030
George Ostrouchov [aut]
3131
Maintainer: Wei-Chen Chen <[email protected]>

inst/doc/pmclust-guide.Rnw

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
%\VignetteIndexEntry{pmclust-guide}
22

3-
\documentclass[article,shortnames,nojss]{pmclust-include/jss}
3+
\documentclass[article,shortnames,nojss]{jss}
4+
5+
\newcommand{\pmclustversion}{0.1-7}
46

57
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
68
%% declarations for jss.cls %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -10,20 +12,24 @@
1012
\author{
1113
\begin{minipage}{6in}
1214
\centering
13-
Wei-Chen Chen$^1$ and George Ostrouchov$^{1,2}$
15+
Wei-Chen Chen$^1$ and George Ostrouchov$^{2,3}$
1416
\end{minipage}
1517
\\
1618
\\
1719
$^1$Department of Ecology and Evolutionary Biology, \\
1820
University of Tennessee, \\
1921
Knoxville, TN, USA \\
2022
\\
21-
$^2$Remote Data Analysis and Visualization Center,\\
23+
$^2$National Institute for Computational Sciences, \\
2224
University of Tennessee, \\
2325
Knoxville, TN, USA \\
26+
\\
27+
$^3$Computer Science and Mathematics Division, \\
28+
Oak Ridge National Laboratory, \\
29+
Oak Ridge, TN, USA
2430
}
2531
%\\ \today}
26-
\title{A Quick Guide for the \pkg{pmclust} Package}
32+
\title{A Quick Guide for the \pkg{pmclust} Package {\small (Ver. \pmclustversion)}}
2733
%\\
2834
%\vspace{0.2cm} \large (Based on Version 0.1-2)}
2935

@@ -65,7 +71,7 @@ Knoxville, TN, USA \\
6571

6672
%% end of declarations %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6773

68-
74+
\input{./pmclust-include/my_jss.cls}
6975
\input{./pmclust-include/00-preamble}
7076

7177
\begin{document}

inst/doc/pmclust-guide.pdf

-12.2 KB
Binary file not shown.

vignettes/build_pdf.sh

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
#!/bin/sh
22

3-
rm *.aux *.bbl *.blg *.log *.out *.toc
3+
R_HOME=`Rscript -e 'cat(R.home()[1])'`
4+
JSS_BST=${R_HOME}/share/texmf/bibtex/bst/jss.bst
5+
JSS_CLS=${R_HOME}/share/texmf/tex/latex/jss.cls
6+
7+
rm *.aux *.bbl *.blg *.log *.out *.toc *.bst *.cls
8+
cp ${JSS_BST} ./
9+
cp ${JSS_CLS} ./
10+
411
pdflatex pmclust-guide.Rnw
512
bibtex pmclust-guide
613
pdflatex pmclust-guide.Rnw
714
pdflatex pmclust-guide.Rnw
815
pdflatex pmclust-guide.Rnw
9-
rm *.aux *.bbl *.blg *.log *.out *.toc
1016

17+
rm *.aux *.bbl *.blg *.log *.out *.toc *.bst *.cls
1118
mv -f *.pdf ../inst/doc/
1219
cp -f *.Rnw ../inst/doc/

vignettes/pmclust-guide.Rnw

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
%\VignetteIndexEntry{pmclust-guide}
22

3-
\documentclass[article,shortnames,nojss]{pmclust-include/jss}
3+
\documentclass[article,shortnames,nojss]{jss}
4+
5+
\newcommand{\pmclustversion}{0.1-7}
46

57
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
68
%% declarations for jss.cls %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -10,20 +12,24 @@
1012
\author{
1113
\begin{minipage}{6in}
1214
\centering
13-
Wei-Chen Chen$^1$ and George Ostrouchov$^{1,2}$
15+
Wei-Chen Chen$^1$ and George Ostrouchov$^{2,3}$
1416
\end{minipage}
1517
\\
1618
\\
1719
$^1$Department of Ecology and Evolutionary Biology, \\
1820
University of Tennessee, \\
1921
Knoxville, TN, USA \\
2022
\\
21-
$^2$Remote Data Analysis and Visualization Center,\\
23+
$^2$National Institute for Computational Sciences, \\
2224
University of Tennessee, \\
2325
Knoxville, TN, USA \\
26+
\\
27+
$^3$Computer Science and Mathematics Division, \\
28+
Oak Ridge National Laboratory, \\
29+
Oak Ridge, TN, USA
2430
}
2531
%\\ \today}
26-
\title{A Quick Guide for the \pkg{pmclust} Package}
32+
\title{A Quick Guide for the \pkg{pmclust} Package {\small (Ver. \pmclustversion)}}
2733
%\\
2834
%\vspace{0.2cm} \large (Based on Version 0.1-2)}
2935

@@ -65,7 +71,7 @@ Knoxville, TN, USA \\
6571

6672
%% end of declarations %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6773

68-
74+
\input{./pmclust-include/my_jss.cls}
6975
\input{./pmclust-include/00-preamble}
7076

7177
\begin{document}

vignettes/pmclust-include/01-acknowledgement.tex

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
\section*{Acknowledgement}
33
\addcontentsline{toc}{section}{Acknowledgement \vspace{-0.3cm}}
44

5+
Chen was supported in part by
6+
the Department of Ecology and Evolutionary Biology at the
7+
University of Tennessee, Knoxville, and a grant from
8+
the National Science Foundation (MCB-1120370.)
9+
\\
10+
511
Chen and Ostrouchov were supported in part by the project
612
``Visual Data Exploration and Analysis of Ultra-large Climate Data''
713
funded by U.S. DOE Office of Science

vignettes/pmclust-include/01-introduction.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
{\color{red} \bf Warning:} This document is written to explain the major
33
functions of
4-
\pkg{pmclust}~\citep{Chen2012pmclustpackage}, version 0.1-5.
4+
\pkg{pmclust}~\citep{Chen2012pmclustpackage}, version 0.1-7.
55
Every effort will be made to insure future versions are consistent with
66
these instructions, but new features in later versions may not be explained
77
in this document.

vignettes/pmclust-include/02-example.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@
195195
\begin{Command}
196196
mpiexec -np 4 Rscript -e "demo(ex_MixSim,'pmclust',ask=F,echo=F)"
197197
\end{Command}
198-
More performance comparison can be found in~\citet{Chen2013}.
198+
More performance comparison can be found in~\citet{Chen2012a}.
199199

200200
Further, \code{X.spmd} may be replaced by \code{X.dmat} in a \code{ddmatrix}
201201
format (block-cyclic) for larger datasets and gaining performance

vignettes/pmclust-include/03-algorithm.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Five algorithms are implemented in this packages including:
66
EM~\citep{Dempster1977}, AECM~\citep{Meng1997}, APECM~\citep{Chen2011},
7-
APECMa~\citep{Chen2013}, and K-means~\citep{Lloyd1982}.
7+
APECMa~\citep{Chen2012a}, and K-means~\citep{Lloyd1982}.
88
The EM-like algorithms (EM, AECM, APECM, and APECMa) are for model-based
99
clusterings~\citep{Fraley2002},
1010
while K-means is a distance based clustering algorithm.

0 commit comments

Comments
 (0)