All Projects → cloudyr → awspack

cloudyr / awspack

Licence: other
Amazon Web Services Bundle Package

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to awspack

gm
R Package for Music Score and Audio Generation
Stars: ✭ 116 (+728.57%)
Mutual labels:  r-package
MAnorm2
MAnorm2 for Normalizing and Comparing ChIP-seq Samples
Stars: ✭ 15 (+7.14%)
Mutual labels:  r-package
colocr
An R package for conducting co-localization analysis. Edit
Stars: ✭ 22 (+57.14%)
Mutual labels:  r-package
rreddit
𝐫⟋ Get Reddit data
Stars: ✭ 49 (+250%)
Mutual labels:  r-package
linguisticsdown
Easy Linguistics Document Writing with R Markdown
Stars: ✭ 24 (+71.43%)
Mutual labels:  r-package
opencage
🌐 R package for the OpenCage API -- both forward and reverse geocoding 🌐
Stars: ✭ 82 (+485.71%)
Mutual labels:  r-package
aws-chaos-scripts
DEPRECATED Collection of python scripts to run failure injection on AWS infrastructure
Stars: ✭ 91 (+550%)
Mutual labels:  amazon-web-services
realtime
No description or website provided.
Stars: ✭ 15 (+7.14%)
Mutual labels:  r-package
limer
A LimeSurvey R Client
Stars: ✭ 59 (+321.43%)
Mutual labels:  cloudyr
TDAstats
R pipeline for computing persistent homology in topological data analysis. See https://doi.org/10.21105/joss.00860 for more details.
Stars: ✭ 26 (+85.71%)
Mutual labels:  r-package
jsonvalidate
✔️⁉️ Validate JSON
Stars: ✭ 43 (+207.14%)
Mutual labels:  r-package
easyclimate
Easy access to high-resolution daily climate data for Europe
Stars: ✭ 26 (+85.71%)
Mutual labels:  r-package
rodev
⛔ ARCHIVED ⛔ Helper for rOpenSci Package Developpers
Stars: ✭ 24 (+71.43%)
Mutual labels:  r-package
nflfastR
A Set of Functions to Efficiently Scrape NFL Play by Play Data
Stars: ✭ 268 (+1814.29%)
Mutual labels:  r-package
bcdata
An R package for searching & retrieving data from the B.C. Data Catalogue
Stars: ✭ 68 (+385.71%)
Mutual labels:  r-package
modeltime.resample
Resampling Tools for Time Series Forecasting with Modeltime
Stars: ✭ 12 (-14.29%)
Mutual labels:  r-package
BAS
BAS R package https://merliseclyde.github.io/BAS/
Stars: ✭ 36 (+157.14%)
Mutual labels:  r-package
ghql
GraphQL R client
Stars: ✭ 128 (+814.29%)
Mutual labels:  r-package
mapr
Map species occurrence data
Stars: ✭ 34 (+142.86%)
Mutual labels:  r-package
polynimbus
Multi-cloud infrastructure inventory and management tool, supporting AWS, Google Cloud, Azure, Oracle Cloud, Rackspace Cloud, Hetzner Cloud, Alibaba Cloud, e24cloud.com, Linode, Cloudflare, GoDaddy and Backblaze B2.
Stars: ✭ 70 (+400%)
Mutual labels:  amazon-web-services

Amazon Web Services Bundle Package

awspack is a bundle of all of the cloudyr project's packages for Amazon Web Services (AWS). It depends upon all of the cloudyr project's AWS packages. It is mainly useful for installing the entire suite of packages; more likely than not you will only want to load individual packages one at a time.

To use the package, you will need an AWS account and to enter your credentials into R. Your keypair can be generated on the IAM Management Console under the heading Access Keys. Note that you only have access to your secret key once. After it is generated, you need to save it in a secure location. New keypairs can be generated at any time if yours has been lost, stolen, or forgotten. The aws.iam package profiles tools for working with IAM, including creating roles, users, groups, and credentials programmatically; it is not needed to use IAM credentials.

A detailed description of how credentials can be specified is provided at: https://github.com/cloudyr/aws.signature/. The easiest way is to simply set environment variables on the command line prior to starting R or via an Renviron.site or .Renviron file, which are used to set environment variables in R during startup (see ? Startup). They can be also set within R:

Sys.setenv("AWS_ACCESS_KEY_ID" = "mykey",
           "AWS_SECRET_ACCESS_KEY" = "mysecretkey",
           "AWS_DEFAULT_REGION" = "us-east-1",
           "AWS_SESSION_TOKEN" = "mytoken")

Installation

CRAN Downloads Travis Build Status codecov.io

To install the latest development version you can install from the cloudyr drat repository:

# latest stable version
install.packages("awspack", repos = c(cloudyr = "http://cloudyr.github.io/drat", getOption("repos")))

Or, to pull a potentially unstable version directly from GitHub:

if (!require("remotes")) {
    install.packages("remotes")
}
remotes::install_github("cloudyr/awspack")

cloudyr project logo

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].