-
Notifications
You must be signed in to change notification settings - Fork 4
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
9e0c87d
commit 49e6937
Showing
1 changed file
with
21 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Package: rIP | ||
Type: Package | ||
Title: Detects Fraud in Online Surveys by Tracing and Scoring IP Addresses | ||
Version: 0.1.1 | ||
Authors@R: c(person("Ryan", "Kennedy", role = c("aut", "cre"), email = "[email protected]"), | ||
person("Philip", "Waggoner", role = "aut", email = "[email protected]"), | ||
person("Scott", "Clifford", role = "ctb")) | ||
Maintainer: Ryan Kennedy <[email protected]> | ||
Description: Takes as its input an array of IP addresses and the user's X-Key, passes these to <https://iphub.info/>, and returns a dataframe with the ip (used for merging), country code, country name, asn, isp, block, and hostname. | ||
Especially important in this is the variable "block", which gives a score indicating whether the IP address is likely from a server farm and should be excluded from the data. It is codes 0 if the IP is residential/unclassified (i.e. safe IP), 1 if the IP is non-residential IP (hostping provider, proxy, etc. -- should likely be excluded), and 2 for non-residential and residential IPs (more stringent, may flag innocent respondents). | ||
The recommendation from <https://iphub.info/> is to block or exclude those who score block = 1. | ||
Imports: httr, utils | ||
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
LazyData: true | ||
RoxygenNote: 6.0.1 | ||
NeedsCompilation: no | ||
Packaged: 2018-10-10 | ||
Author: Ryan Kennedy [aut, cre], | ||
Philip Waggoner [aut], | ||
Scott Clifford [ctb] |