Skip to content

Commit

Permalink
Beta version: first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Patricia Zauchner committed Aug 24, 2023
0 parents commit fe88d8e
Show file tree
Hide file tree
Showing 156 changed files with 23,797 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures?
# Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]

name: R-CMD-check

jobs:
R-CMD-check:
runs-on: ${{ matrix.config.os }}

name: ${{ matrix.config.os }} (${{ matrix.config.r }})

strategy:
fail-fast: false
matrix:
config:
- {os: macos-latest, r: 'release'}
- {os: windows-latest, r: 'release'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
# - {os: ubuntu-latest, r: 'oldrel-1'}

env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true # This is because there are
# warnings that I cannot circumvent because they are triggered by
# oTree's file names

steps:
- uses: actions/checkout@v3

- uses: r-lib/actions/setup-pandoc@v2

- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check

- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
error-on: '"error"'
35 changes: 35 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
Package: gmoTree
Title: Get and Modify oTree Data
Version: 0.0.1
Date: 2023-08-24
Authors@R:
person("Patricia F.", "Zauchner", , "patricia.zauchner@gmx.at", role = c("aut", "trl", "cre", "cph"),
comment = c(ORCID = "https://orcid.org/0000-0002-5938-1683"))
Description: Import, merge, and manage data from oTree experiments.
License: GPL (>= 3)
URL: https://zauchnerp.github.io/gmoTree/,
https://github.com/ZauchnerP/gmoTree
BugReports: https://github.com/ZauchnerP/gmoTree/issues
Depends:
R (>= 4.3.0)
Imports:
data.table (>= 1.14.8),
dplyr (>= 1.1.2),
openxlsx (>= 4.2.5.2),
plyr (>= 1.8.8),
rlang (>= 1.1.1),
rlist (>= 0.4.6.2),
stats (>= 4.3.0),
stringr (>= 1.5.0)
Suggests:
knitr (>= 1.43),
rmarkdown (>= 2.22),
testthat (>= 3.1.9),
withr (>= 2.5.0)
VignetteBuilder:
knitr
BuildVignettes: true
Config/testthat/edition: 3
Encoding: UTF-8
LazyData: true
RoxygenNote: 7.2.3
18 changes: 18 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by roxygen2: do not edit by hand

export(apptime)
export(assignv)
export(assignv_to_aaw)
export(delete_cases)
export(delete_dropouts)
export(delete_duplicate)
export(delete_plabels)
export(delete_sessions)
export(extime)
export(import_otree)
export(make_ids)
export(messy_chat)
export(messy_time)
export(pagesec)
export(show_constant)
export(show_dropouts)
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# gmoTree 0.0.1

* Beta version of gmoTree published (formerly known as "ioTree")
Loading

0 comments on commit fe88d8e

Please sign in to comment.