From 49e6937b48cc4a435039827151b1634b7f627c50 Mon Sep 17 00:00:00 2001 From: Philip Waggoner <31326382+pdwaggoner@users.noreply.github.com> Date: Wed, 10 Oct 2018 15:25:43 -0400 Subject: [PATCH] Add files via upload --- DESCRIPTION | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 DESCRIPTION diff --git a/DESCRIPTION b/DESCRIPTION new file mode 100644 index 0000000..d759227 --- /dev/null +++ b/DESCRIPTION @@ -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 = "rkennedy@uh.edu"), + person("Philip", "Waggoner", role = "aut", email = "pdwaggoner@wm.edu"), + person("Scott", "Clifford", role = "ctb")) +Maintainer: Ryan Kennedy +Description: Takes as its input an array of IP addresses and the user's X-Key, passes these to , 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 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]