Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samuelmacedo83/contas
https://github.com/samuelmacedo83/contas
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/samuelmacedo83/contas
- Owner: samuelmacedo83
- Created: 2021-02-12T00:50:09.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-19T00:17:39.000Z (almost 4 years ago)
- Last Synced: 2023-03-12T03:32:22.750Z (almost 2 years ago)
- Language: R
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
README
---
title: "Pacote Contas"
author: "Samuel Macêdo"
date: "18/02/2021"
output:
github_document:
fig_width: 9
fig_height: 5
---```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```Este é um pacote simples apenas para demosntração em aula de como construir um pacote em R e subir para o github.
Este pacote possui duas funções: somar e subtrair.## Instalação
Para instalar o pacote use os comando abaixo
```{r, eval=FALSE}
devtools::install_github("samuelmacedo83/contas")
```Não se esqueça de rodar o pacote
```{r message=FALSE, warning=FALSE}
library(contas)
```## Usando as funções
Esta função serve para somar (vou por o resultado abaixo)
```{r}
somar(2, 3)
```Esta função subtrai (desta vez, não vou por o resultado)
```{r, eval=FALSE}
subtrair(4, 3)
```