Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@

## Donutzz

To create a donut chart within R, please use my function by calling the following commands:
![](https://github.com/cenuno/MPA_Portfolio/raw/lab_01/IST719_Information-Visualization/example_donut.png)

### To create a donut chart within R, please use my function by calling the following commands:
```
source_github <- function( url ) {
# load package
require(RCurl)

# read script lines from website and evaluate
script <- getURL(url, ssl.verifypeer = FALSE)
script <- getURL(u, ssl.verifypeer = FALSE)
eval(parse(text = script), envir=.GlobalEnv)
}

Expand Down