]> code.communitydata.science - rises_declines_wikia_code.git/blob - 00_count_editors.R
add copy of the GPL
[rises_declines_wikia_code.git] / 00_count_editors.R
1 #!/usr/bin/env Rscript
2 ## script that saves the number of unique editors to a wiki. For use with parallelsql
3
4 # Copyright (C) 2018  Nathan TeBlunthuis
5
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
18
19
20 source("lib-00-utils.R")
21 opt <- commandArgs(trailingOnly = TRUE)
22 input.dir <- "../wikiq_wikia_2010_all_nopersistance/"
23 output.dir <- "../wikiq_wikia_2010_unique_editors/"
24 d <- load.wikiq.file(paste0(input.dir,opt[1]))
25
26 n.editors <- length(unique(d[anon == FALSE & namespace == 0, editor.id]))
27
28 write(n.editors,file=paste0(output.dir,gsub("\\.tsv$",'.editors',opt[1])),append=FALSE)

Community Data Science Collective || Want to submit a patch?