-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathData_collection.Rmd
1050 lines (631 loc) · 53 KB
/
Data_collection.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: "Data_collection"
author: "Sophie_Berube"
date: "9/25/2017"
output: html_document
---
library(rplos)
```{r}
ANOVA<- facetplos(q='ANOVA',facet.field=c('journal','subject'),facet.query='ANOVA')
str(ANOVA$facet_fields$journal)
str(ANOVA$facet_fields$subject)
bayes<- facetplos(q="bayes,bayesian",facet.field=c('journal', 'subject'),facet.query='bayes,bayesian')
str(bayes$facet_fields$journal)
str(bayes$facet_fields$subject)
linReg<-facetplos(q='*:*', facet.field=c('journal','subject'),facet.query='linear regression')
str(linReg$facet_fields$journal)
str(linReg$facet_fields$subject)
lmm<- facetplos(q='*:*', facet.field=c('journal','subject'),facet.query='linear mixed models, mixed models')
str(lmm$facet_fields$journal)
str(lmm$facet_fields$subject)
gee<- facetplos(q='*:*', facet.field= c('journal','subject'), facet.query = 'generalized estimating equations, generalized estimating equation')
str(gee$facet_fields$journal)
str(gee$facet_fields$subject)
machinelearning<- facetplos(q='*:*', facet.field=c('journal','subject'), facet.query='machine learning')
str(machinelearning$facet_fields$journal)
str(machinelearning$facet_fields$subject)
svm<- facetplos(q='*:*', facet.field=c('journal','subject'),facet.query='support vector machine, support vector machines')
str(machinelearning$facet_fields$journal)
str(machinelearning$facet_fields$subject)
bootstrap<- facetplos(q='*:*', facet.field=c('journal','subject'),facet.query='bootstrap')
str(bootstrap$facet_fields$journal)
str(bootstrap$facet_field$journal)
deepLearning<- facetplos(q='*:*', facet.field=c('journal','subject'),facet.query='deep learning')
str(deepLearning$facet_field$journal)
str(deepLearning$facet_field$journal)
#######################################################
# putting this into a tidy dataframe
#######################################################
key_words<- c("ANOVA", "Bayes, Bayesian","Linear Regression","Linear Mixed Models, Mixed Models","Generalized Estimating Equations", "Machine Learning", "Support Vector Machine", "Bootstrap", "deep learning","Markov Chain Monte Carlo, MCMC")
```
```{r, searchplos}
?searchplos
journ
plosfields
key_words<- c("ANOVA", "Bayes, Bayesian","Linear Regression","Linear Mixed Models, Mixed Models","Generalized Estimating Equations", "Machine Learning", "Support Vector Machine", "Bootstrap", "deep learning")
ANOVA_1<- searchplos(q='ANOVA',fl='materials_and_methods', limit=0)
ANOVA_1$meta
bayes_1<- searchplos(q='bayesian',fl='materials_and_methods', limit=0)
bayes_1$meta
linReg_1<- searchplos(q='linear regression',fl='materials_and_methods', limit=0)
linReg_1$meta
lmm_1<- searchplos(q='linear mixed models',fl='materials_and_methods', limit=0)
lmm_1$meta
gee_1<- searchplos(q='generalized estimating equations', fl='materials_and_methods', limit=0)
gee_1$meta
machinelearning_1<- searchplos(q='machine learning', fl='materials_and_methods', limit=0)
machine_learning_1$meta
svm_1<-searchplos(q='support vector machine', fl='materials_and_methods', limit=0)
svm_1$meta
bootstrap_1<-searchplos(q='bootstrap',fl='materials_and_methods', limit=0)
bootstrap_1$meta
deepLearning_1<- searchplos(q='deep learning',fl='materials_and_methods', limit=8)
deepLearning_1$meta
```
```{r, plots}
words<- plosword(list("ANOVA", "bayes", "bayesian","linear regression","linear mixed models", "mixed models","generalized estimating equations", "machine learning", "support vector machine", "bootstrap", "deep learning"),vis=TRUE)
words
library("ggplot2")
ANOVA_time<- plot_throughtime(terms="ANOVA",limit=10000) + geom_line(size=2,color='black')
ANOVA_time$data
bayes_time<- plot_throughtime(terms="bayesian",limit=10000) + geom_line(size=2,color='black')
bayes_time
linearregression_time<- plot_throughtime(terms="linear regression",limit=10000) + geom_line(size=2,color='black')
linearregression_time
lmm_time<- plot_throughtime(terms="linear mixed model",limit=10000) + geom_line(size=2,color='black')
lmm_time
gee_time<- plot_throughtime(terms="generalized estimating equations",limit=10000) + geom_line(size=2,color='black')
gee_time
machinelearning_time<- plot_throughtime(terms="machine learning",limit=10000) + geom_line(size=2,color='black')
machinelearning_time
svm_time<- plot_throughtime(terms="support vector machine",limit=10000) + geom_line(size=2,color='black')
svm_time
bootstrap_time<- plot_throughtime(terms="bootstrap",limit=100) + geom_line(size=2,color='black')+ geom_smooth(size=1,color="red")
bootstrap_time$data
bootstrap_time1<- plot_throughtime(terms="bootstrap",limit=10000) + geom_line(size=2,color='black')+ geom_smooth(size=1,color="red")
bootstrap_time1$data
deeplearning_time<- plot_throughtime(terms="deep learning",limit=10000) + geom_line(size=2,color='black')
deeplearning_time
neuralNet_time<- plot_throughtime(terms="neural network", limit=10000)
geom_line(size=2,color='black')
neuralNet_time
```
```{r}
words<- plosword(list("ANOVA", "bayes", "bayesian","linear regression","linear mixed models", "mixed models","generalized estimating equations", "machine learning", "support vector machine", "bootstrap", "deep learning"),vis=TRUE)
output_A<- highplos(q='ANOVA',hl.fl='body',rows=10)
output_A
output_B<-highplos(q='bayesian',hl.fl='body',rows=10)
output_B
output_LR<- highplos(q='linear regression',hl.fl='body',rows=10)
output_LR
output_MM<-highplos(q='mixed effect models',hl.fl='body',rows=10)
output_MM
output_MM<- highplos(q='mixed models',hl.fl='materials_and_methods',rows=10)
output_MM
output_GEE<-highplos(q='generalized estimating equations',hl.fl='body',rows=10)
output_GEE
output_ML<- highplos(q='machine learning',hl.fl='body',rows=10)
output_ML
output_SVM<-highplos(q='support vector machine',hl.fl='body',rows=10)
output_SVM
output_BT<- highplos(q='bootstrap',hl.fl='body',rows=10)
output_BT
output_DL<-highplos(q='deep learning',hl.fl='body',rows=10)
output_DL
output_NN<- highplos(q='neural network', hl.fl='body', rows=10)
output_NN
```
```{r}
?searchplos
plosfields
```
```{r, Calculating Total Article Counts}
?facetplos
sept_03_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2003-09-01T00:00:00Z",facet.date.end = "2003-09-30T00:00:00Z", facet.date.gap='+1MONTH')
sept_03_all$facet_dates
oct_03_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2003-10-01T00:00:00Z",facet.date.end = "2003-10-31T00:00:00Z", facet.date.gap='+1MONTH')
oct_03_all$facet_dates
nov_03_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2003-11-01T00:00:00Z",facet.date.end = "2003-11-30T00:00:00Z", facet.date.gap='+1MONTH')
nov_03_all$facet_dates
dec_03_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2003-12-01T00:00:00Z",facet.date.end = "2003-12-31T00:00:00Z", facet.date.gap='+1MONTH')
dec_03_all$facet_dates
jan_04_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2004-01-01T00:00:00Z",facet.date.end = "2004-01-31T00:00:00Z", facet.date.gap='+1MONTH')
jan_04_all$facet_dates
feb_04_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2004-02-01T00:00:00Z",facet.date.end = "2004-02-29T00:00:00Z", facet.date.gap='+1MONTH')
feb_04_all$facet_dates
mar_04_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2004-03-01T00:00:00Z",facet.date.end = "2004-03-31T00:00:00Z", facet.date.gap='+1MONTH')
mar_04_all$facet_dates
apr_04_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2004-04-01T00:00:00Z",facet.date.end = "2004-04-30T00:00:00Z", facet.date.gap='+1MONTH')
apr_04_all$facet_dates
may_04_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2004-05-01T00:00:00Z",facet.date.end = "2004-05-31T00:00:00Z", facet.date.gap='+1MONTH')
may_04_all$facet_dates
jun_04_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2004-06-01T00:00:00Z",facet.date.end = "2004-06-30T00:00:00Z", facet.date.gap='+1MONTH')
jun_04_all$facet_dates
jly_04_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2004-07-01T00:00:00Z",facet.date.end = "2004-07-31T00:00:00Z", facet.date.gap='+1MONTH')
jly_04_all$facet_dates
aug_04_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2004-08-01T00:00:00Z",facet.date.end = "2004-08-31T00:00:00Z", facet.date.gap='+1MONTH')
aug_04_all$facet_dates
sept_04_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2004-09-01T00:00:00Z",facet.date.end = "2004-09-30T00:00:00Z", facet.date.gap='+1MONTH')
sept_04_all$facet_dates
oct_04_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2004-10-01T00:00:00Z",facet.date.end = "2004-10-31T00:00:00Z", facet.date.gap='+1MONTH')
oct_04_all$facet_dates
nov_04_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2004-11-01T00:00:00Z",facet.date.end = "2004-11-30T00:00:00Z", facet.date.gap='+1MONTH')
nov_04_all$facet_dates
dec_04_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2004-12-01T00:00:00Z",facet.date.end = "2004-12-31T00:00:00Z", facet.date.gap='+1MONTH')
dec_04_all$facet_dates
jan_05_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2005-01-01T00:00:00Z",facet.date.end = "2005-01-31T00:00:00Z", facet.date.gap='+1MONTH')
jan_05_all$facet_dates
feb_05_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2005-02-01T00:00:00Z",facet.date.end = "2005-02-28T00:00:00Z", facet.date.gap='+1MONTH')
feb_05_all$facet_dates
mar_05_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2005-03-01T00:00:00Z",facet.date.end = "2005-03-31T00:00:00Z", facet.date.gap='+1MONTH')
mar_05_all$facet_dates
apr_05_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2005-05-01T00:00:00Z",facet.date.end = "2005-05-30T00:00:00Z", facet.date.gap='+1MONTH')
apr_05_all$facet_dates
may_05_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2005-05-01T00:00:00Z",facet.date.end = "2005-05-31T00:00:00Z", facet.date.gap='+1MONTH')
may_05_all$facet_dates
jun_05_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2005-06-01T00:00:00Z",facet.date.end = "2005-06-30T00:00:00Z", facet.date.gap='+1MONTH')
jun_05_all$facet_dates
jly_05_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2005-07-01T00:00:00Z",facet.date.end = "2005-07-31T00:00:00Z", facet.date.gap='+1MONTH')
jly_05_all$facet_dates
aug_05_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2005-08-01T00:00:00Z",facet.date.end = "2005-08-31T00:00:00Z", facet.date.gap='+1MONTH')
aug_05_all$facet_dates
sept_05_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2005-09-01T00:00:00Z",facet.date.end = "2005-09-30T00:00:00Z", facet.date.gap='+1MONTH')
sept_05_all$facet_dates
oct_05_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2005-10-01T00:00:00Z",facet.date.end = "2005-10-31T00:00:00Z", facet.date.gap='+1MONTH')
oct_05_all$facet_dates
nov_05_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2005-11-01T00:00:00Z",facet.date.end = "2005-11-30T00:00:00Z", facet.date.gap='+1MONTH')
nov_05_all$facet_dates
dec_05_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2005-12-01T00:00:00Z",facet.date.end = "2005-12-31T00:00:00Z", facet.date.gap='+1MONTH')
dec_05_all$facet_dates
jan_06_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2006-01-01T00:00:00Z",facet.date.end = "2006-01-31T00:00:00Z", facet.date.gap='+1MONTH')
jan_06_all$facet_dates
feb_06_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2006-02-01T00:00:00Z",facet.date.end = "2006-02-28T00:00:00Z", facet.date.gap='+1MONTH')
feb_06_all$facet_dates
mar_06_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2006-03-01T00:00:00Z",facet.date.end = "2006-03-31T00:00:00Z", facet.date.gap='+1MONTH')
mar_06_all$facet_dates
apr_06_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2006-04-01T00:00:00Z",facet.date.end = "2006-04-30T00:00:00Z", facet.date.gap='+1MONTH')
apr_06_all$facet_dates
may_06_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2006-05-01T00:00:00Z",facet.date.end = "2006-05-31T00:00:00Z", facet.date.gap='+1MONTH')
may_06_all$facet_dates
jun_06_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2006-06-01T00:00:00Z",facet.date.end = "2006-06-30T00:00:00Z", facet.date.gap='+1MONTH')
jun_06_all$facet_dates
jly_06_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2006-07-01T00:00:00Z",facet.date.end = "2006-07-31T00:00:00Z", facet.date.gap='+1MONTH')
jly_06_all$facet_dates
aug_06_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2006-08-01T00:00:00Z",facet.date.end = "2006-08-31T00:00:00Z", facet.date.gap='+1MONTH')
aug_06_all$facet_dates
sept_06_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2006-09-01T00:00:00Z",facet.date.end = "2006-09-30T00:00:00Z", facet.date.gap='+1MONTH')
sept_06_all$facet_dates
oct_06_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2006-10-01T00:00:00Z",facet.date.end = "2006-10-31T00:00:00Z", facet.date.gap='+1MONTH')
oct_06_all$facet_dates
nov_06_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2006-11-01T00:00:00Z",facet.date.end = "2006-11-30T00:00:00Z", facet.date.gap='+1MONTH')
nov_06_all$facet_dates
dec_06_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2006-12-01T00:00:00Z",facet.date.end = "2006-12-31T00:00:00Z", facet.date.gap='+1MONTH')
dec_06_all$facet_dates
jan_07_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2007-01-01T00:00:00Z",facet.date.end = "2007-01-31T00:00:00Z", facet.date.gap='+1MONTH')
jan_07_all$facet_dates
feb_07_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2007-02-01T00:00:00Z",facet.date.end = "2007-02-28T00:00:00Z", facet.date.gap='+1MONTH')
feb_07_all$facet_dates
mar_07_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2007-03-01T00:00:00Z",facet.date.end = "2007-03-31T00:00:00Z", facet.date.gap='+1MONTH')
mar_07_all$facet_dates
apr_07_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2007-04-01T00:00:00Z",facet.date.end = "2007-04-30T00:00:00Z", facet.date.gap='+1MONTH')
apr_07_all$facet_dates
may_07_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2007-05-01T00:00:00Z",facet.date.end = "2007-05-31T00:00:00Z", facet.date.gap='+1MONTH')
may_07_all$facet_dates
jun_07_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2007-06-01T00:00:00Z",facet.date.end = "2007-06-30T00:00:00Z", facet.date.gap='+1MONTH')
jun_07_all$facet_dates
jly_07_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2007-07-01T00:00:00Z",facet.date.end = "2007-07-31T00:00:00Z", facet.date.gap='+1MONTH')
jly_07_all$facet_dates
aug_07_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2007-08-01T00:00:00Z",facet.date.end = "2007-08-31T00:00:00Z", facet.date.gap='+1MONTH')
aug_07_all$facet_dates
sept_07_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2007-09-01T00:00:00Z",facet.date.end = "2007-09-30T00:00:00Z", facet.date.gap='+1MONTH')
sept_07_all$facet_dates
oct_07_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2007-10-01T00:00:00Z",facet.date.end = "2007-10-31T00:00:00Z", facet.date.gap='+1MONTH')
oct_07_all$facet_dates
nov_07_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2007-11-01T00:00:00Z",facet.date.end = "2007-11-30T00:00:00Z", facet.date.gap='+1MONTH')
nov_07_all$facet_dates
dec_07_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2007-12-01T00:00:00Z",facet.date.end = "2007-12-31T00:00:00Z", facet.date.gap='+1MONTH')
dec_07_all$facet_dates
jan_08_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2008-01-01T00:00:00Z",facet.date.end = "2008-01-31T00:00:00Z", facet.date.gap='+1MONTH')
jan_08_all$facet_dates
feb_08_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2008-02-01T00:00:00Z",facet.date.end = "2008-02-29T00:00:00Z", facet.date.gap='+1MONTH')
feb_08_all$facet_dates
mar_08_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2008-03-01T00:00:00Z",facet.date.end = "2008-03-31T00:00:00Z", facet.date.gap='+1MONTH')
mar_08_all$facet_dates
apr_08_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2008-04-01T00:00:00Z",facet.date.end = "2008-04-30T00:00:00Z", facet.date.gap='+1MONTH')
apr_08_all$facet_dates
may_08_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2008-05-01T00:00:00Z",facet.date.end = "2008-05-31T00:00:00Z", facet.date.gap='+1MONTH')
may_08_all$facet_dates
jun_08_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2008-06-01T00:00:00Z",facet.date.end = "2008-06-30T00:00:00Z", facet.date.gap='+1MONTH')
jun_08_all$facet_dates
jly_08_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2008-07-01T00:00:00Z",facet.date.end = "2008-07-31T00:00:00Z", facet.date.gap='+1MONTH')
jly_08_all$facet_dates
aug_08_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2008-08-01T00:00:00Z",facet.date.end = "2008-08-31T00:00:00Z", facet.date.gap='+1MONTH')
aug_08_all$facet_dates
sept_08_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2008-09-01T00:00:00Z",facet.date.end = "2008-09-30T00:00:00Z", facet.date.gap='+1MONTH')
sept_08_all$facet_dates
oct_08_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2008-10-01T00:00:00Z",facet.date.end = "2008-10-31T00:00:00Z", facet.date.gap='+1MONTH')
oct_08_all$facet_dates
nov_08_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2008-11-01T00:00:00Z",facet.date.end = "2008-11-30T00:00:00Z", facet.date.gap='+1MONTH')
nov_08_all$facet_dates
dec_08_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2008-12-01T00:00:00Z",facet.date.end = "2008-12-31T00:00:00Z", facet.date.gap='+1MONTH')
dec_08_all$facet_dates
jan_09_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2009-01-01T00:00:00Z",facet.date.end = "2009-01-31T00:00:00Z", facet.date.gap='+1MONTH')
jan_09_all$facet_dates
feb_09_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2009-02-01T00:00:00Z",facet.date.end = "2009-02-28T00:00:00Z", facet.date.gap='+1MONTH')
feb_09_all$facet_dates
mar_09_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2009-03-01T00:00:00Z",facet.date.end = "2009-03-31T00:00:00Z", facet.date.gap='+1MONTH')
mar_09_all$facet_dates
apr_09_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2009-04-01T00:00:00Z",facet.date.end = "2009-04-30T00:00:00Z", facet.date.gap='+1MONTH')
apr_09_all$facet_dates
may_09_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2009-05-01T00:00:00Z",facet.date.end = "2009-05-31T00:00:00Z", facet.date.gap='+1MONTH')
may_09_all$facet_dates
jun_09_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2009-06-01T00:00:00Z",facet.date.end = "2009-06-30T00:00:00Z", facet.date.gap='+1MONTH')
jun_09_all$facet_dates
jly_09_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2009-07-01T00:00:00Z",facet.date.end = "2009-07-31T00:00:00Z", facet.date.gap='+1MONTH')
jly_09_all$facet_dates
aug_09_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2009-08-01T00:00:00Z",facet.date.end = "2009-08-31T00:00:00Z", facet.date.gap='+1MONTH')
aug_09_all$facet_dates
sept_09_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2009-09-01T00:00:00Z",facet.date.end = "2009-09-30T00:00:00Z", facet.date.gap='+1MONTH')
sept_09_all$facet_dates
oct_09_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2009-10-01T00:00:00Z",facet.date.end = "2009-10-31T00:00:00Z", facet.date.gap='+1MONTH')
oct_09_all$facet_dates
nov_09_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2009-11-01T00:00:00Z",facet.date.end = "2009-11-30T00:00:00Z", facet.date.gap='+1MONTH')
nov_09_all$facet_dates
dec_09_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2009-12-01T00:00:00Z",facet.date.end = "2009-12-31T00:00:00Z", facet.date.gap='+1MONTH')
dec_09_all$facet_dates
jan_10_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2010-01-01T00:00:00Z",facet.date.end = "2010-01-31T00:00:00Z", facet.date.gap='+1MONTH')
jan_10_all$facet_dates
feb_10_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2010-02-01T00:00:00Z",facet.date.end = "2010-02-28T00:00:00Z", facet.date.gap='+1MONTH')
feb_10_all$facet_dates
mar_10_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2010-03-01T00:00:00Z",facet.date.end = "2010-03-31T00:00:00Z", facet.date.gap='+1MONTH')
mar_10_all$facet_dates
apr_10_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2010-04-01T00:00:00Z",facet.date.end = "2010-04-30T00:00:00Z", facet.date.gap='+1MONTH')
apr_10_all$facet_dates
may_10_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2010-05-01T00:00:00Z",facet.date.end = "2010-05-31T00:00:00Z", facet.date.gap='+1MONTH')
may_10_all$facet_dates
jun_10_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2010-06-01T00:00:00Z",facet.date.end = "2010-06-30T00:00:00Z", facet.date.gap='+1MONTH')
jun_10_all$facet_dates
jly_10_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2010-07-01T00:00:00Z",facet.date.end = "2010-07-31T00:00:00Z", facet.date.gap='+1MONTH')
jly_10_all$facet_dates
aug_10_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2010-08-01T00:00:00Z",facet.date.end = "2010-08-31T00:00:00Z", facet.date.gap='+1MONTH')
aug_10_all$facet_dates
sept_10_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2010-09-01T00:00:00Z",facet.date.end = "2010-09-30T00:00:00Z", facet.date.gap='+1MONTH')
sept_10_all$facet_dates
oct_10_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2010-10-01T00:00:00Z",facet.date.end = "2010-10-31T00:00:00Z", facet.date.gap='+1MONTH')
oct_10_all$facet_dates
nov_10_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2010-11-01T00:00:00Z",facet.date.end = "2010-11-30T00:00:00Z", facet.date.gap='+1MONTH')
nov_10_all$facet_dates
dec_10_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2010-12-01T00:00:00Z",facet.date.end = "2010-12-31T00:00:00Z", facet.date.gap='+1MONTH')
dec_10_all$facet_dates
jan_11_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2011-01-01T00:00:00Z",facet.date.end = "2011-01-31T00:00:00Z", facet.date.gap='+1MONTH')
jan_11_all$facet_dates
feb_11_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2011-02-01T00:00:00Z",facet.date.end = "2011-02-28T00:00:00Z", facet.date.gap='+1MONTH')
feb_11_all$facet_dates
mar_11_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2011-03-01T00:00:00Z",facet.date.end = "2011-03-31T00:00:00Z", facet.date.gap='+1MONTH')
mar_11_all$facet_dates
apr_11_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2011-04-01T00:00:00Z",facet.date.end = "2011-04-30T00:00:00Z", facet.date.gap='+1MONTH')
apr_11_all$facet_dates
may_11_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2011-05-01T00:00:00Z",facet.date.end = "2011-05-31T00:00:00Z", facet.date.gap='+1MONTH')
may_11_all$facet_dates
jun_11_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2011-06-01T00:00:00Z",facet.date.end = "2011-06-30T00:00:00Z", facet.date.gap='+1MONTH')
jun_11_all$facet_dates
jly_11_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2011-07-01T00:00:00Z",facet.date.end = "2011-07-31T00:00:00Z", facet.date.gap='+1MONTH')
jly_11_all$facet_dates
aug_11_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2011-08-01T00:00:00Z",facet.date.end = "2011-08-31T00:00:00Z", facet.date.gap='+1MONTH')
aug_11_all$facet_dates
sept_11_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2011-09-01T00:00:00Z",facet.date.end = "2011-09-30T00:00:00Z", facet.date.gap='+1MONTH')
sept_11_all$facet_dates
oct_11_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2011-10-01T00:00:00Z",facet.date.end = "2011-10-31T00:00:00Z", facet.date.gap='+1MONTH')
oct_11_all$facet_dates
nov_11_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2011-11-01T00:00:00Z",facet.date.end = "2011-11-30T00:00:00Z", facet.date.gap='+1MONTH')
nov_11_all$facet_dates
dec_11_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2011-12-01T00:00:00Z",facet.date.end = "2011-12-31T00:00:00Z", facet.date.gap='+1MONTH')
dec_11_all$facet_dates
jan_12_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2012-01-01T00:00:00Z",facet.date.end = "2012-01-31T00:00:00Z", facet.date.gap='+1MONTH')
jan_12_all$facet_dates
feb_12_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2012-02-01T00:00:00Z",facet.date.end = "2012-02-29T00:00:00Z", facet.date.gap='+1MONTH')
feb_12_all$facet_dates
mar_12_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2012-03-01T00:00:00Z",facet.date.end = "2012-03-31T00:00:00Z", facet.date.gap='+1MONTH')
mar_12_all$facet_dates
apr_12_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2012-04-01T00:00:00Z",facet.date.end = "2012-04-30T00:00:00Z", facet.date.gap='+1MONTH')
apr_12_all$facet_dates
may_12_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2012-05-01T00:00:00Z",facet.date.end = "2012-05-31T00:00:00Z", facet.date.gap='+1MONTH')
may_12_all$facet_dates
jun_12_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2012-06-01T00:00:00Z",facet.date.end = "2012-06-30T00:00:00Z", facet.date.gap='+1MONTH')
jun_12_all$facet_dates
jly_12_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2012-07-01T00:00:00Z",facet.date.end = "2012-07-31T00:00:00Z", facet.date.gap='+1MONTH')
jly_12_all$facet_dates
aug_12_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2012-08-01T00:00:00Z",facet.date.end = "2012-08-31T00:00:00Z", facet.date.gap='+1MONTH')
aug_12_all$facet_dates
sept_12_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2012-09-01T00:00:00Z",facet.date.end = "2012-09-30T00:00:00Z", facet.date.gap='+1MONTH')
sept_12_all$facet_dates
oct_12_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2012-10-01T00:00:00Z",facet.date.end = "2012-10-31T00:00:00Z", facet.date.gap='+1MONTH')
oct_12_all$facet_dates
nov_12_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2012-11-01T00:00:00Z",facet.date.end = "2012-11-30T00:00:00Z", facet.date.gap='+1MONTH')
nov_12_all$facet_dates
dec_12_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2012-12-01T00:00:00Z",facet.date.end = "2012-12-31T00:00:00Z", facet.date.gap='+1MONTH')
dec_12_all$facet_dates
jan_13_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2013-01-01T00:00:00Z",facet.date.end = "2013-01-31T00:00:00Z", facet.date.gap='+1MONTH')
jan_13_all$facet_dates
feb_13_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2013-02-01T00:00:00Z",facet.date.end = "2013-02-28T00:00:00Z", facet.date.gap='+1MONTH')
feb_13_all$facet_dates
mar_13_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2013-03-01T00:00:00Z",facet.date.end = "2013-03-31T00:00:00Z", facet.date.gap='+1MONTH')
mar_13_all$facet_dates
apr_13_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2013-04-01T00:00:00Z",facet.date.end = "2013-04-30T00:00:00Z", facet.date.gap='+1MONTH')
apr_13_all$facet_dates
may_13_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2013-05-01T00:00:00Z",facet.date.end = "2013-05-31T00:00:00Z", facet.date.gap='+1MONTH')
may_13_all$facet_dates
jun_13_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2013-06-01T00:00:00Z",facet.date.end = "2013-06-30T00:00:00Z", facet.date.gap='+1MONTH')
jun_13_all$facet_dates
jly_13_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2013-07-01T00:00:00Z",facet.date.end = "2013-07-31T00:00:00Z", facet.date.gap='+1MONTH')
jly_13_all$facet_dates
aug_13_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2013-08-01T00:00:00Z",facet.date.end = "2013-08-31T00:00:00Z", facet.date.gap='+1MONTH')
aug_13_all$facet_dates
sept_13_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2013-09-01T00:00:00Z",facet.date.end = "2013-09-30T00:00:00Z", facet.date.gap='+1MONTH')
sept_13_all$facet_dates
oct_13_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2013-31-01T00:00:00Z",facet.date.end = "2013-31-31T00:00:00Z", facet.date.gap='+1MONTH')
oct_13_all$facet_dates
nov_13_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2013-11-01T00:00:00Z",facet.date.end = "2013-11-30T00:00:00Z", facet.date.gap='+1MONTH')
nov_13_all$facet_dates
dec_13_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2013-12-01T00:00:00Z",facet.date.end = "2013-12-31T00:00:00Z", facet.date.gap='+1MONTH')
dec_13_all$facet_dates
jan_14_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2014-01-01T00:00:00Z",facet.date.end = "2014-01-31T00:00:00Z", facet.date.gap='+1MONTH')
jan_14_all$facet_dates
feb_14_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2014-02-01T00:00:00Z",facet.date.end = "2014-02-28T00:00:00Z", facet.date.gap='+1MONTH')
feb_14_all$facet_dates
mar_14_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2014-03-01T00:00:00Z",facet.date.end = "2014-03-31T00:00:00Z", facet.date.gap='+1MONTH')
mar_14_all$facet_dates
apr_14_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2014-04-01T00:00:00Z",facet.date.end = "2014-04-30T00:00:00Z", facet.date.gap='+1MONTH')
apr_14_all$facet_dates
may_14_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2014-05-01T00:00:00Z",facet.date.end = "2014-05-31T00:00:00Z", facet.date.gap='+1MONTH')
may_14_all$facet_dates
jun_14_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2014-06-01T00:00:00Z",facet.date.end = "2014-06-30T00:00:00Z", facet.date.gap='+1MONTH')
jun_14_all$facet_dates
jly_14_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2014-07-01T00:00:00Z",facet.date.end = "2014-07-31T00:00:00Z", facet.date.gap='+1MONTH')
jly_14_all$facet_dates
aug_14_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2014-08-01T00:00:00Z",facet.date.end = "2014-08-31T00:00:00Z", facet.date.gap='+1MONTH')
aug_14_all$facet_dates
sept_14_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2014-09-01T00:00:00Z",facet.date.end = "2014-09-30T00:00:00Z", facet.date.gap='+1MONTH')
sept_14_all$facet_dates
oct_14_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2014-10-01T00:00:00Z",facet.date.end = "2014-10-31T00:00:00Z", facet.date.gap='+1MONTH')
oct_14_all$facet_dates
nov_14_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2014-11-01T00:00:00Z",facet.date.end = "2014-11-30T00:00:00Z", facet.date.gap='+1MONTH')
nov_14_all$facet_dates
dec_14_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2014-12-01T00:00:00Z",facet.date.end = "2014-12-31T00:00:00Z", facet.date.gap='+1MONTH')
dec_14_all$facet_dates
jan_15_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2015-01-01T00:00:00Z",facet.date.end = "2015-01-31T00:00:00Z", facet.date.gap='+1MONTH')
jan_15_all$facet_dates
feb_15_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2015-02-01T00:00:00Z",facet.date.end = "2015-02-28T00:00:00Z", facet.date.gap='+1MONTH')
feb_15_all$facet_dates
mar_15_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2015-03-01T00:00:00Z", facet.date.end="2015-03-31T00:00:00Z",facet.date.gap="+1MONTH")
mar_15_all$facet_dates
apr_15_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2015-04-01T00:00:00Z", facet.date.end="2015-04-30T00:00:00Z",facet.date.gap="+1MONTH")
apr_15_all$facet_dates
may_15_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2015-05-01T00:00:00Z", facet.date.end="2015-05-31T00:00:00Z",facet.date.gap="+1MONTH")
may_15_all$facet_dates
jun_15_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2015-06-01T00:00:00Z", facet.date.end="2015-06-30T00:00:00Z",facet.date.gap="+1MONTH")
jun_15_all$facet_dates
jly_15_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2015-07-01T00:00:00Z", facet.date.end="2015-07-31T00:00:00Z",facet.date.gap="+1MONTH")
jly_15_all$facet_dates
aug_15_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2015-08-01T00:00:00Z", facet.date.end="2015-08-31T00:00:00Z",facet.date.gap="+1MONTH")
aug_15_all$facet_dates
sept_15_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2015-09-01T00:00:00Z", facet.date.end="2015-09-30T00:00:00Z",facet.date.gap="+1MONTH")
sept_15_all$facet_dates
oct_15_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2015-10-01T00:00:00Z", facet.date.end="2015-10-31T00:00:00Z",facet.date.gap="+1MONTH")
oct_15_all$facet_dates
nov_15_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2015-11-01T00:00:00Z", facet.date.end="2015-11-30T00:00:00Z",facet.date.gap="+1MONTH")
nov_15_all$facet_dates
dec_15_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2015-12-01T00:00:00Z", facet.date.end="2015-12-31T00:00:00Z",facet.date.gap="+1MONTH")
dec_15_all$facet_dates
jan_16_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2016-01-01T00:00:00Z",facet.date.end = "2016-01-31T00:00:00Z", facet.date.gap='+1MONTH')
jan_16_all$facet_dates
feb_16_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2016-02-01T00:00:00Z",facet.date.end = "2016-02-29T00:00:00Z", facet.date.gap='+1MONTH')
feb_16_all$facet_dates
mar_16_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2016-03-01T00:00:00Z", facet.date.end="2016-03-31T00:00:00Z",facet.date.gap="+1MONTH")
mar_16_all$facet_dates
apr_16_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2016-04-01T00:00:00Z", facet.date.end="2016-04-30T00:00:00Z",facet.date.gap="+1MONTH")
apr_16_all$facet_dates
may_16_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2016-05-01T00:00:00Z", facet.date.end="2016-05-31T00:00:00Z",facet.date.gap="+1MONTH")
may_16_all$facet_dates
jun_16_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2016-06-01T00:00:00Z", facet.date.end="2016-06-30T00:00:00Z",facet.date.gap="+1MONTH")
jun_16_all$facet_dates
jly_16_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2016-07-01T00:00:00Z", facet.date.end="2016-07-31T00:00:00Z",facet.date.gap="+1MONTH")
jly_16_all$facet_dates
aug_16_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2016-08-01T00:00:00Z", facet.date.end="2016-08-31T00:00:00Z",facet.date.gap="+1MONTH")
aug_16_all$facet_dates
sept_16_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2015-09-01T00:00:00Z", facet.date.end="2016-09-30T00:00:00Z",facet.date.gap="+1MONTH")
sept_16_all$facet_dates
oct_16_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2016-10-01T00:00:00Z", facet.date.end="2016-10-31T00:00:00Z",facet.date.gap="+1MONTH")
oct_16_all$facet_dates
nov_16_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2016-11-01T00:00:00Z", facet.date.end="2016-11-30T00:00:00Z",facet.date.gap="+1MONTH")
nov_16_all$facet_dates
dec_16_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2016-12-01T00:00:00Z", facet.date.end="2016-12-31T00:00:00Z",facet.date.gap="+1MONTH")
dec_16_all$facet_dates
jan_17_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2017-01-01T00:00:00Z",facet.date.end = "2017-01-31T00:00:00Z", facet.date.gap='+1MONTH')
jan_17_all$facet_dates
feb_17_all<- facetplos(facet.query='the',facet.field='journal', facet.date='publication_date', facet.date.start="2017-02-01T00:00:00Z",facet.date.end = "2017-02-29T00:00:00Z", facet.date.gap='+1MONTH')
feb_17_all$facet_dates
mar_17_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2017-03-01T00:00:00Z", facet.date.end="2017-03-31T00:00:00Z",facet.date.gap="+1MONTH")
mar_17_all$facet_dates
apr_17_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2017-04-01T00:00:00Z", facet.date.end="2017-04-30T00:00:00Z",facet.date.gap="+1MONTH")
apr_17_all$facet_dates
may_17_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2017-05-01T00:00:00Z", facet.date.end="2017-05-31T00:00:00Z",facet.date.gap="+1MONTH")
may_17_all$facet_dates
jun_17_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2017-06-01T00:00:00Z", facet.date.end="2017-06-30T00:00:00Z",facet.date.gap="+1MONTH")
jun_17_all$facet_dates
jly_17_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2017-07-01T00:00:00Z", facet.date.end="2017-07-31T00:00:00Z",facet.date.gap="+1MONTH")
jly_17_all$facet_dates
aug_17_all<- facetplos(facet.query='the',facet.field='journal',facet.date='publication_date',facet.date.start="2017-08-01T00:00:00Z", facet.date.end="2017-08-31T00:00:00Z",facet.date.gap="+1MONTH")
aug_17_all$facet_dates
sept_17_allA<- facetplos(facet.date='publication_date',facet.date.start="2017-09-01T00:00:00Z", facet.date.end="2017-09-30T00:00:00Z",facet.date.gap="+1MONTH")
sept_17_allA
sept_17_all<- facetplos(facet.query="the",facet.date='publication_date',facet.date.start="2017-09-01T00:00:00Z", facet.date.end="2017-09-30T00:00:00Z",facet.date.gap="+1MONTH")
sept_17_all
sept_17_all<- facetplos(facet.field='journal',facet.date='publication_date',facet.date.start="2017-09-01T00:00:00Z", facet.date.end="2017-09-30T00:00:00Z",facet.date.gap="+1MONTH")
sept_17_all
sept_17_ANOVA<- facetplos(facet.field='publication_date',facet.query="regression")
sapply((sept_17_ANOVA[[2]])[[1]],unlist)
matrix(unlist(sept_17_ANOVA[[2]]),ncol=2)
```
```{r}
ANOVA_ML<- plot_throughtime(terms=c("bootstrap","support vector machines"),limit=10000) + geom_line(size=1,color="black")
ANOVA_ML
```
```{r}
list("ANOVA", "bayes", "bayesian","linear regression","linear mixed models", "mixed models","generalized estimating equations", "machine learning", "support vector machine", "bootstrap", "deep learning","neural network")
#pairwise comparisons ANOVA
ANOVA_Bayesian<- plot_throughtime(terms=c("ANOVA","bayesian"),limit=10000) + geom_line(size=1,color="black")
ANOVA_Bayesian
ANOVA_LR<- plot_throughtime(terms=c("ANOVA","linear regression"),limit=10000) + geom_line(size=1,color="black")
ANOVA_LR
ANOVA_MM<- plot_throughtime(terms=c("ANOVA","mixed effect model"),limit=10000) + geom_line(size=1,color="black")
ANOVA_MM
ANOVA_GEE<- plot_throughtime(terms=c("ANOVA","generalized estimating equation"),limit=10000) + geom_line(size=1,color="black")
ANOVA_GEE
ANOVA_ML<- plot_throughtime(terms=c("ANOVA","machine learning"),limit=10000) + geom_line(size=1,color="black")
ANOVA_ML
ANOVA_SVM<- plot_throughtime(terms=c("ANOVA","support vector machine"),limit=10000) + geom_line(size=1,color="black")
ANOVA_SVM
ANOVA_DL<- plot_throughtime(terms=c("ANOVA","deep learning"),limit=10000) + geom_line(size=1,color="black")
ANOVA_DL
ANOVA_Btstp<- plot_throughtime(terms=c("ANOVA","bootstrap"),limit=10000) + geom_line(size=1,color="black")
ANOVA_Btstp
ANOVA_NN<- plot_throughtime(terms=c("ANOVA","artificial neural network"),limit=10000) + geom_line(size=1,color="black")
ANOVA_NN
#pairwise comparisons bayesian
Bayesian_LR<- plot_throughtime(terms=c("linear regression","bayesian"),limit=10000) + geom_line(size=1,color="black")
Bayesian_LR
Bayesian_MM<- plot_throughtime(terms=c("bayesian","mixed effect model"),limit=10000) + geom_line(size=1,color="black")
Bayesian_MM
Bayesian_GEE<- plot_throughtime(terms=c("bayesian","generalized estimating equation"),limit=10000) + geom_line(size=1,color="black")
Bayesian_GEE
Bayesian_ML<- plot_throughtime(terms=c("bayesian","machine learning"),limit=10000) + geom_line(size=1,color="black")
Bayesian_ML
Bayesian_SVM<- plot_throughtime(terms=c("bayesian","support vector machine"),limit=10000) + geom_line(size=1,color="black")
Bayesian_SVM
Bayesian_DL<- plot_throughtime(terms=c("bayesian","deep learning"),limit=10000) + geom_line(size=1,color="black")
Bayesian_DL
Bayesian_Btstp<- plot_throughtime(terms=c("bayesian","bootstrap"),limit=10000) + geom_line(size=1,color="black")
Bayesian_Btstp
Bayesian_NN<- plot_throughtime(terms=c("bayesian","artificial neural network"),limit=10000) + geom_line(size=1,color="black")
Bayesian_NN
#pairwise comparisons linear regression
LR_MM<- plot_throughtime(terms=c("linear regression","mixed effect model"),limit=10000) + geom_line(size=1,color="black")
LR_MM
LR_GEE<- plot_throughtime(terms=c("linear regression","generalized estimating equation"),limit=10000) + geom_line(size=1,color="black")
LR_GEE
LR_ML<- plot_throughtime(terms=c("linear regression","machine learning"),limit=10000) + geom_line(size=1,color="black")
LR_ML
LR_SVM<- plot_throughtime(terms=c("linear regression","support vector machine"),limit=10000) + geom_line(size=1,color="black")
LR_SVM
LR_DL<- plot_throughtime(terms=c("linear regression","deep learning"),limit=10000) + geom_line(size=1,color="black")
LR_DL
LR_Btstp<- plot_throughtime(terms=c("linear regression","bootstrap"),limit=10000) + geom_line(size=1,color="black")
LR_Btstp
LR_NN<- plot_throughtime(terms=c("linear regression","artificial neural network"),limit=10000) + geom_line(size=1,color="black")
LR_NN
#pairwise comparisons mixed models
MM_GEE<- plot_throughtime(terms=c("mixed effect model","generalized estimating equation"),limit=10000) + geom_line(size=1,color="black")
MM_GEE
MM_ML<- plot_throughtime(terms=c("mixed effect model","machine learning"),limit=10000) + geom_line(size=1,color="black")
MM_ML
MM_SVM<- plot_throughtime(terms=c("mixed effect model","support vector machine"),limit=10000) + geom_line(size=1,color="black")
MM_SVM
MM_DL<- plot_throughtime(terms=c("mixed effect model","deep learning"),limit=10000) + geom_line(size=1,color="black")
MM_DL
MM_Btstp<- plot_throughtime(terms=c("mixed effect model","bootstrap"),limit=10000) + geom_line(size=1,color="black")
MM_Btstp
MM_NN<- plot_throughtime(terms=c("mixed effect model","artificial neural network"),limit=10000) + geom_line(size=1,color="black")
MM_NN
#pairwise comparisons gee
GEE_ML<- plot_throughtime(terms=c("generalized estimating equation","machine learning"),limit=10000) + geom_line(size=1,color="black")
GEE_ML
GEE_SVM<- plot_throughtime(terms=c("generalized estimating equation","support vector machine"),limit=10000) + geom_line(size=1,color="black")
GEE_SVM
GEE_DL<- plot_throughtime(terms=c("generalized estimating equation","deep learning"),limit=10000) + geom_line(size=1,color="black")
GEE_DL
GEE_Btstp<- plot_throughtime(terms=c("generalized estimating equation","bootstrap"),limit=10000) + geom_line(size=1,color="black")
GEE_Btstp
GEE_NN<- plot_throughtime(terms=c("generalized estimating equation","artificial neural network"),limit=10000) + geom_line(size=1,color="black")
GEE_NN
#pairwise comparisons machine learning
ML_SVM<- plot_throughtime(terms=c("machine learning","support vector machine"),limit=10000) + geom_line(size=1,color="black")
ML_SVM
ML_DL<- plot_throughtime(terms=c("machine learning","deep learning"),limit=10000) + geom_line(size=1,color="black")
ML_DL
ML_Btstp<- plot_throughtime(terms=c("machine learning","bootstrap"),limit=10000) + geom_line(size=1,color="black")
ML_Btstp
ML_NN<- plot_throughtime(terms=c("machine learning","artificial neural network"),limit=10000) + geom_line(size=1,color="black")
ML_NN
#pairwise comparisons support vector machine
SVM_DL<- plot_throughtime(terms=c("support vector machine","deep learning"),limit=10000) + geom_line(size=1,color="black")
SVM_DL
SVM_Btstp<- plot_throughtime(terms=c("support vector machine","bootstrap"),limit=10000) + geom_line(size=1,color="black")
SVM_Btstp
SVM_NN<- plot_throughtime(terms=c("machine learning","artificial neural network"),limit=10000) + geom_line(size=1,color="black")
SVM_NN
#pairwise comparisons deep learning
DL_Btstp<- plot_throughtime(terms=c("deep learning","bootstrap"),limit=10000) + geom_line(size=1,color="black")
DL_Btstp
DL_NN<- plot_throughtime(terms=c("deep learning","artificial neural network"),limit=10000) + geom_line(size=1,color="black")
DL_NN
#pairwise comparisons bootstrap
Btstp_NN<- plot_throughtime(terms=c("bootstrap","artificial neural network"),limit=10000) + geom_line(size=1,color="black")
Btstp_NN
```
library(dplyr)
# what happens when you expect two models to be similar
#novabayes_DF<-right_join(ANOVA$data[,c(1,3)],Bayesian$data[,c(1,3)],by="dateplot")
colnames(anovabayes_DF)<-list("dateplot","ANOVA","BAYES")
anovabayes<- na.omit(anovabayes_DF)
anovabayes
ANOVA_bayes_1<- glm(formula=anovabayes$ANOVA~anovabayes$dateplot, family=poisson)
summary(ANOVA_bayes_1)
ANOVA_bayes_2<- glm(formula=anovabayes$ANOVA~(anovabayes$dateplot+anovabayes$BAYES+
anovabayes$BAYES*anovabayes$dateplot), family=poisson)
summary(ANOVA_bayes_2)
#what happens when you expect two models to be different
anovaml_DF<-right_join(ANOVA$data[,c(1,3)],ML$data[,c(1,3)],by="dateplot")
colnames(anovaml_DF)<-list("dateplot","ANOVA","MachineLearning")
anovaml<- na.omit(anovaml_DF)
anovaml$dateplot
dim(NN$data)
ANOVA_ML_1<- glm(formula=anovaml$ANOVA~anovaml$dateplot, family=quasipoisson)
summary(ANOVA_ML_1)
ANOVA_ML_2<- glm(formula=anovaml$ANOVA~(anovaml$dateplot+anovaml$MachineLearning+
anovaml$MachineLearning*anovaml$dateplot),
family=quasipoisson)
summary(ANOVA_ML_2)
#try 2
anovadl_DF<-right_join(ANOVA$data[,c(1,3)],DL$data[,c(1,3)],by="dateplot")
colnames(anovadl_DF)<-list("dateplot","ANOVA","DeepLearning")
anovadl<- na.omit(anovadl_DF)
anovadl
ANOVA_DL_1<- glm(formula=anovadl$ANOVA~anovadl$dateplot, family=quasipoisson)
summary(ANOVA_DL_1)