-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
865f535
commit addf7a3
Showing
59 changed files
with
3,107 additions
and
2,905 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ | |
#' @author George Moroz <[email protected]> | ||
#' @seealso \code{\link{aff.lang}}, \code{\link{country.lang}}, \code{\link{gltc.lang}}, \code{\link{iso.lang}}, \code{\link{lat.lang}}, \code{\link{long.lang}}, \code{\link{subc.lang}}, \code{\link{url.lang}} | ||
#' @examples | ||
#' area.lang('Adyghe') | ||
#' area.lang(c('Adyghe', 'Aduge')) | ||
#' area.lang('Kabardian') | ||
#' area.lang(c('Kabardian', 'Aduge')) | ||
#' @export | ||
|
||
area.lang <- function(x) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ | |
#' @author George Moroz <[email protected]> | ||
#' @seealso \code{\link{aff.lang}}, \code{\link{area.lang}}, \code{\link{country.lang}}, \code{\link{iso.lang}}, \code{\link{lat.lang}}, \code{\link{long.lang}}, \code{\link{subc.lang}}, \code{\link{url.lang}} | ||
#' @examples | ||
#' gltc.lang('Adyghe') | ||
#' gltc.lang(c('Adyghe', 'Udi')) | ||
#' gltc.lang('Kabardian') | ||
#' gltc.lang(c('Kabardian', 'Udi')) | ||
#' @export | ||
|
||
gltc.lang <- function(x) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,16 +5,17 @@ | |
#' @param response logical. If TRUE, when language is absent, return warnings with a possible candidates. | ||
#' @author George Moroz <[email protected]> | ||
#' @examples | ||
#' is.glottolog(c('Adyghe', 'Russian')) | ||
#' is.glottolog(c('Kabardian', 'Russian')) | ||
#' is.glottolog('Buyaka') | ||
#' | ||
#' \dontrun{ | ||
#' # Add warning message with sugestions | ||
#' is.glottolog(c('Adyge', 'Russian'), response = TRUE) | ||
#' # > FALSE TRUE | ||
#' # Warning message: | ||
#' # In is.glottolog(c('Adyge', 'Russian'), response = TRUE) : | ||
#' # Language Adyge is absent in our version of the Glottolog database. Did you mean Aduge, Adyghe? | ||
#' # In is.glottolog(c('Kabardia', 'Russian'), response = TRUE) : | ||
#' # Language Kabardia is absent in our version of the Glottolog database. | ||
#' # Did you mean Kabardian, Greater Kabardian? | ||
#' } | ||
#' @export | ||
#' @importFrom stringdist stringdist | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ | |
#' @author George Moroz <[email protected]> | ||
#' @seealso \code{\link{aff.lang}}, \code{\link{area.lang}}, \code{\link{country.lang}}, \code{\link{gltc.lang}}, \code{\link{lat.lang}}, \code{\link{long.lang}}, \code{\link{subc.lang}}, \code{\link{url.lang}} | ||
#' @examples | ||
#' iso.lang('Adyghe') | ||
#' iso.lang(c('Adyghe', 'Udi')) | ||
#' iso.lang('Kabardian') | ||
#' iso.lang(c('Kabardian', 'Udi')) | ||
#' @export | ||
|
||
iso.lang <- function(x) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,10 @@ | |
#' @author George Moroz <[email protected]> | ||
#' @seealso \code{\link{aff.lang}}, \code{\link{area.lang}}, \code{\link{country.lang}}, \code{\link{gltc.lang}}, \code{\link{iso.lang}}, \code{\link{long.lang}}, \code{\link{subc.lang}}, \code{\link{url.lang}} | ||
#' @examples | ||
#' lat.lang('Adyghe') | ||
#' long.lang('Adyghe') | ||
#' lat.lang(c('Adyghe', 'Russian')) | ||
#' long.lang(c('Adyghe', 'Russian')) | ||
#' lat.lang('Kabardian') | ||
#' long.lang('Kabardian') | ||
#' lat.lang(c('Kabardian', 'Russian')) | ||
#' long.lang(c('Kabardian', 'Russian')) | ||
#' @export | ||
|
||
lat.lang <- function(x) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,11 +6,11 @@ | |
#' @author George Moroz <[email protected]> | ||
#' @seealso \code{\link{aff.lang}}, \code{\link{area.lang}}, \code{\link{country.lang}}, \code{\link{gltc.lang}}, \code{\link{iso.lang}}, \code{\link{lat.lang}}, \code{\link{subc.lang}}, \code{\link{url.lang}} | ||
#' @examples | ||
#' lat.lang('Adyghe') | ||
#' long.lang('Adyghe') | ||
#' lat.lang(c('Adyghe', 'Russian')) | ||
#' long.lang(c('Adyghe', 'Russian')) | ||
#' long.lang(c('Adyghe', 'Aleut'), map.orientation = "Pacific") | ||
#' lat.lang('Kabardian') | ||
#' long.lang('Kabardian') | ||
#' lat.lang(c('Kabardian', 'Russian')) | ||
#' long.lang(c('Kabardian', 'Russian')) | ||
#' long.lang(c('Kabardian', 'Aleut'), map.orientation = "Pacific") | ||
#' @export | ||
|
||
long.lang <- function(x, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,7 +86,7 @@ | |
#' @param radius deprecated argument | ||
#' @author George Moroz <[email protected]> | ||
#' @examples | ||
#' map.feature(c("Adyghe", "Russian")) | ||
#' map.feature(c("Kabardian", "Russian")) | ||
#' | ||
#' @export | ||
#' @importFrom leaflet colorNumeric | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.