Skip to content

Commit 9774dbe

Browse files
committed
Update documentation
1 parent 6542226 commit 9774dbe

11 files changed

+5
-9
lines changed

.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ corinho.R
77
.git
88
.gitignore
99
^README\.Rmd$
10+
^figure$
11+
^.*\.png$
1012
^README-.*\.png$
1113
^cran-comments\.md
1214
^NEWS\.md$

R/class-dtwSat.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ setMethod("show",
138138
signature = signature(object="dtwSat"),
139139
definition = function(object){
140140
cat("Time-Weighted DTW alignment object\n")
141-
cat("Alignments:\n")
141+
cat("Number of alignments:",nrow(getAlignments(object)),"\n")
142142
print(head(getAlignments(object)))
143143
invisible(NULL)
144144
}

README-alig.png

-239 KB
Binary file not shown.

README-classify.png

-469 KB
Binary file not shown.

README-filter.png

-44 KB
Binary file not shown.

README-path.png

-183 KB
Binary file not shown.

README.Rmd

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ df2 = melt(data.frame(Time=index(sy), sy), id="Time")
104104
gp2 = ggplot(df2, aes(x=Time, y=value, group=variable, colour=variable)) +
105105
geom_line() +
106106
ylab("Value")
107-
gp2
108107
109108
grid.arrange(gp1,gp2,nrow=2)
110109
```

README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ print(alig)
4040

4141
```
4242
## Time-Weighted DTW alignment object
43-
## Alignments:
43+
## Number of alignments: 4
4444
## query from to distance normalizedDistance
4545
## 1 1 2011-10-04 2012-01-28 3.956483 0.03140066
4646
## 2 1 2012-10-06 2013-02-15 4.008838 0.03181617
@@ -140,16 +140,11 @@ df2 = melt(data.frame(Time=index(sy), sy), id="Time")
140140
gp2 = ggplot(df2, aes(x=Time, y=value, group=variable, colour=variable)) +
141141
geom_line() +
142142
ylab("Value")
143-
gp2
144-
```
145-
146-
![plot of chunk define-demo-plot-smoothing](figure/define-demo-plot-smoothing-1.png)
147143

148-
```r
149144
grid.arrange(gp1,gp2,nrow=2)
150145
```
151146

152-
![plot of chunk define-demo-plot-smoothing](figure/define-demo-plot-smoothing-2.png)
147+
![plot of chunk define-demo-plot-smoothing](figure/define-demo-plot-smoothing-1.png)
153148

154149

155150

figure/define-demo-code-1.png

-13.3 KB
Binary file not shown.
-9.71 KB
Loading

0 commit comments

Comments
 (0)