adding package metadata files
moving scripts and other files around to "proper" package location
- Loading branch information
- +2 −0 .Rbuildignore
- +1 −5 .gitignore
- +11 −0 DESCRIPTION
- +16 −0 LDA.pointbreak.Rproj
- +2 −0 NAMESPACE
- 0 { → R}/AIC_model_selection.R
- 0 { → R}/LDA-distance.R
- 0 { → R}/LDA_analysis.R
- 0 { → R}/LDA_confidence_intervals.R
- 0 { → R}/LDA_figure_scripts.R
- 0 { → R}/abundance_plots.r
- 0 { → R}/changepointmodel.r
- 0 { → R}/create_sim_data.R
- 0 { → R}/explanatory-figure.R
- 0 { → R}/gibbs_functions.R
- 0 { → R}/rodent_LDA_analysis.r
- 0 { → R}/rodent_LDA_analysis_gibbs.R
- 0 { → R}/rodent_data_for_LDA.r
- 0 { → R}/rodent_euclid_dist_plot.R
- 0 { → R}/simulated_data_LDA.R
- 0 { → inst/extdata}/Rodent_table_dat.csv
- BIN { → vignettes}/explanatory.pdf
| @@ -0,0 +1,2 @@ | ||
| ^.*\.Rproj$ | ||
| ^\.Rproj\.user$ |
| @@ -1,13 +1,9 @@ | ||
| .cache_chunk | ||
|
|
||
| .cache_ll | ||
|
|
||
| .Rhistory | ||
|
|
||
| 'rodent gibbs results' | ||
|
|
||
| 'simulation gibbs results' | ||
|
|
||
| 'changepoint results' | ||
|
|
||
| .Rproj.user | ||
| .RData |
| @@ -0,0 +1,11 @@ | ||
| Package: LDA.pointbreak | ||
| Title: Detect Community-Types from Data and Identify Break Points | ||
| Version: 0.0.1 | ||
| Authors@R: person("Erica", "Christensen", email = "erica.christensen@weecology.org", role = c("aut", "cre")) | ||
| person("Dave", "Harris", email = "dave.harris@weecology.org", role = c("aut")) | ||
| person("Hao", "Ye", email = "hao.ye@weecology.org", role = c("ctb")) | ||
| Description: Uses Latent Dirichlet Allocation to identify "community-types", then applies a changepoint model to identify like break points in the community-type-level time series. | ||
| Depends: R (>= 3.4.1) | ||
| License: MIT | ||
| Encoding: UTF-8 | ||
| LazyData: true |
| @@ -0,0 +1,16 @@ | ||
| Version: 1.0 | ||
|
|
||
| RestoreWorkspace: No | ||
| SaveWorkspace: No | ||
| AlwaysSaveHistory: Default | ||
|
|
||
| EnableCodeIndexing: Yes | ||
| Encoding: UTF-8 | ||
|
|
||
| AutoAppendNewline: Yes | ||
| StripTrailingWhitespace: Yes | ||
|
|
||
| BuildType: Package | ||
| PackageUseDevtools: Yes | ||
| PackageInstallArgs: --no-multiarch --with-keep.source | ||
| PackageRoxygenize: rd,collate,namespace |
| @@ -0,0 +1,2 @@ | ||
| # Generated by roxygen2: fake comment so roxygen2 overwrites silently. | ||
| exportPattern("^[^\\.]") |