Skip to content

Commit

Permalink
Spell checking
Browse files Browse the repository at this point in the history
  • Loading branch information
maxconway committed Apr 7, 2020
1 parent a229007 commit 9c9cca1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Description: Simple package to download Google Sheets using just the sharing
License: GPL-3
URL: https://github.com/maxconway/gsheet
BugReports: https://github.com/maxconway/gsheet/issues
Language: en-GB
Imports:
httr,
stringr
Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Install from CRAN with:
install.packages('gsheet')
```

Or install the latest development version from github wth:
Or install the latest development version from github with:
```{r, eval=FALSE}
devtools::install_github("maxconway/gsheet")
```
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ gsheet

[![Travis-CI Build Status](https://travis-ci.org/maxconway/gsheet.png?branch=master)](https://travis-ci.org/maxconway/gsheet) [![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/gsheet)](https://cran.r-project.org/package=gsheet)

gsheet is a simple package to download Google Sheets (aka Google Docs Spreadsheets) using just the sharing link. Sheets can be downloaded as a data frame, or as plain text to parse manually.
gsheet is a simple package to download \[Google Sheets\](<https://www.google.com/sheets/about/> (aka Google Docs Spreadsheets) using just the sharing link. Sheets can be downloaded as a data frame, or as plain text to parse manually.

Installation
------------
Expand All @@ -16,7 +16,7 @@ Install from CRAN with:
install.packages('gsheet')
```

Or install the latest development version from github wth:
Or install the latest development version from github with:

``` r
devtools::install_github("maxconway/gsheet")
Expand All @@ -42,7 +42,7 @@ If you want more control, you might want to use something like:
``` r
url <- 'docs.google.com/spreadsheets/d/1I9mJsS5QnXF2TNNntTy-HrcdHmIF9wJ8ONYvEJTXSNo'
a <- gsheet2text(url, format='csv')
b <- read.csv(text=a, stringsAsFactors=FALSE)
b <- read.csv(a, stringsAsFactors=FALSE)
```

This way the table can be cleaned before parsing, and different options can be used in parsing.
Expand Down

0 comments on commit 9c9cca1

Please sign in to comment.