Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
jkho committed Jun 18, 2020
2 parents 6a1423d + c4db028 commit 16d3fac
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 12 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: rosetteApi
Type: Package
Title: 'Rosette' API
Version: 1.14.3
Version: 1.14.4
Date: 2019-10-25
Authors@R: c(
person("Chris", "Park", role = "aut"),
Expand Down
2 changes: 1 addition & 1 deletion R/Api.R
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ api <- function(user_key, endpoint, parameters=FALSE, custom_headers=NULL,
#'
#' @return current binding version
get_binding_version <- function() {
binding_version <- "1.14.3"
binding_version <- "1.14.4"
return(binding_version)
}

Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

[![Build Status](https://travis-ci.org/rosette-api/R-Binding.svg?branch=develop)](https://travis-ci.org/rosette-api/R-Binding) ![](https://img.shields.io/cran/v/rosetteApi.svg?colorB=bright%20green&style=flat)

# R client Binding for Rosette API

## Rosette API
The Rosette Text Analytics Platform uses natural language processing, statistical modeling, and machine learning to
analyze unstructured and semi-structured text across 364 language-encoding-script combinations, revealing valuable
Expand Down
12 changes: 5 additions & 7 deletions examples/address_similarity.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,12 @@ opt <- parse_args(opt_parser)


address1_data <- list("houseNumber" = "1600",
"road" = "Pennsylvania Ave",
"city" = "Washington")

address2_data <- list("houseNumber" = "1600",
"road" = "Pennsylvania Avenue",
"road" = "Pennsylvania Ave NW",
"city" = "Washington",
"state" = "D.C.",
"postcode" = "20500")
"state" = "DC",
"postCode" = "20500")

address2_data <- "160 Pennsilvana Avenue, Washington, D.C., 20500"

parameters <- list()
parameters[["address1"]] <- address1_data
Expand Down
2 changes: 1 addition & 1 deletion examples/categories.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ option_list <- list(
opt_parser <- OptionParser(option_list = option_list)
opt <- parse_args(opt_parser)

categories_url_data <- "https://onlocationvacations.com/2015/03/05/the-new-ghostbusters-movie-begins-filming-in-boston-in-june/"
categories_url_data <- "https://onlocationvacations.com/2018/02/06/downton-abbey-exhibition-extended-april-2-nyc/"

parameters <- list()
parameters[["contentUri"]] <- categories_url_data
Expand Down

0 comments on commit 16d3fac

Please sign in to comment.