From 842e7b5b8e7f68fd2dbe237af653c2c7b969f6e3 Mon Sep 17 00:00:00 2001 From: Avery Robbins Date: Fri, 22 Jan 2021 12:12:03 -0700 Subject: [PATCH] test --- DESCRIPTION | 11 +++++++++++ NAMESPACE | 1 + R/hello.R | 18 ++++++++++++++++++ man/hello.Rd | 12 ++++++++++++ tidytranscript.Rproj | 20 ++++++++++++++++++++ 5 files changed, 62 insertions(+) create mode 100644 DESCRIPTION create mode 100644 NAMESPACE create mode 100644 R/hello.R create mode 100644 man/hello.Rd create mode 100644 tidytranscript.Rproj diff --git a/DESCRIPTION b/DESCRIPTION new file mode 100644 index 0000000..0e248a0 --- /dev/null +++ b/DESCRIPTION @@ -0,0 +1,11 @@ +Package: tidytranscript +Type: Package +Title: What the Package Does (Title Case) +Version: 0.1.0 +Author: Who wrote it +Maintainer: The package maintainer +Description: More about what it does (maybe more than one line) + Use four spaces when indenting paragraphs within the Description. +License: What license is it under? +Encoding: UTF-8 +LazyData: true diff --git a/NAMESPACE b/NAMESPACE new file mode 100644 index 0000000..d75f824 --- /dev/null +++ b/NAMESPACE @@ -0,0 +1 @@ +exportPattern("^[[:alpha:]]+") diff --git a/R/hello.R b/R/hello.R new file mode 100644 index 0000000..a793395 --- /dev/null +++ b/R/hello.R @@ -0,0 +1,18 @@ +# Hello, world! +# +# This is an example function named 'hello' +# which prints 'Hello, world!'. +# +# You can learn more about package authoring with RStudio at: +# +# http://r-pkgs.had.co.nz/ +# +# Some useful keyboard shortcuts for package authoring: +# +# Install Package: 'Ctrl + Shift + B' +# Check Package: 'Ctrl + Shift + E' +# Test Package: 'Ctrl + Shift + T' + +hello <- function() { + print("Hello, world!") +} diff --git a/man/hello.Rd b/man/hello.Rd new file mode 100644 index 0000000..0fa7c4b --- /dev/null +++ b/man/hello.Rd @@ -0,0 +1,12 @@ +\name{hello} +\alias{hello} +\title{Hello, World!} +\usage{ +hello() +} +\description{ +Prints 'Hello, world!'. +} +\examples{ +hello() +} diff --git a/tidytranscript.Rproj b/tidytranscript.Rproj new file mode 100644 index 0000000..a648ce1 --- /dev/null +++ b/tidytranscript.Rproj @@ -0,0 +1,20 @@ +Version: 1.0 + +RestoreWorkspace: Default +SaveWorkspace: Default +AlwaysSaveHistory: Default + +EnableCodeIndexing: Yes +UseSpacesForTab: Yes +NumSpacesForTab: 4 +Encoding: UTF-8 + +RnwWeave: Sweave +LaTeX: pdfLaTeX + +AutoAppendNewline: Yes +StripTrailingWhitespace: Yes + +BuildType: Package +PackageUseDevtools: Yes +PackageInstallArgs: --no-multiarch --with-keep.source