-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformatted_journal.json
3818 lines (3818 loc) · 189 KB
/
formatted_journal.json
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": "Foundations and Trends in Machine Learning",
"categories": "Artificial Intelligence (Q1), Human-Computer Interaction (Q1), Software (Q1)",
"publisher": "Now Publishers Inc",
"areas": "Computer Science"
},
{
"title": "Advances in Computers",
"categories": "Computer Science (miscellaneous) (Q1)",
"publisher": "Academic Press Inc.",
"areas": "Computer Science"
},
{
"title": "IEEE Journal on Selected Areas in Communications",
"categories": "Computer Networks and Communications (Q1), Electrical and Electronic Engineering (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Engineering"
},
{
"title": "Foundations and Trends in Signal Processing",
"categories": "Signal Processing (Q1)",
"publisher": "Now Publishers Inc",
"areas": "Computer Science"
},
{
"title": "Nature Biomedical Engineering",
"categories": "Bioengineering (Q1), Biomedical Engineering (Q1), Biotechnology (Q1), Computer Science Applications (Q1), Medicine (miscellaneous) (Q1)",
"publisher": "Nature Publishing Group",
"areas": "Biochemistry: Genetics and Molecular Biology, Chemical Engineering, Computer Science, Engineering, Medicine"
},
{
"title": "IEEE Wireless Communications",
"categories": "Computer Science Applications (Q1), Electrical and Electronic Engineering (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Engineering"
},
{
"title": "Science Robotics",
"categories": "Artificial Intelligence (Q1), Computer Science Applications (Q1), Control and Optimization (Q1), Mechanical Engineering (Q1)",
"publisher": "American Association for the Advancement of Science",
"areas": "Computer Science, Engineering, Mathematics"
},
{
"title": "Molecular Systems Biology",
"categories": "Agricultural and Biological Sciences (miscellaneous) (Q1), Applied Mathematics (Q1), Biochemistry: Genetics and Molecular Biology (miscellaneous) (Q1), Computational Theory and Mathematics (Q1), Immunology and Microbiology (miscellaneous) (Q1), Information Systems (Q1), Medicine (miscellaneous) (Q1)",
"publisher": "Wiley-Blackwell",
"areas": "Agricultural and Biological Sciences, Biochemistry: Genetics and Molecular Biology, Computer Science, Immunology and Microbiology, Mathematics, Medicine"
},
{
"title": "Nature Machine Intelligence",
"categories": "Artificial Intelligence (Q1), Computer Networks and Communications (Q1), Computer Vision and Pattern Recognition (Q1), Human-Computer Interaction (Q1), Software (Q1)",
"publisher": "Springer Nature Switzerland AG",
"areas": "Computer Science"
},
{
"title": "IEEE Transactions on Evolutionary Computation",
"categories": "Computational Theory and Mathematics (Q1), Software (Q1), Theoretical Computer Science (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Mathematics"
},
{
"title": "IEEE Transactions on Wireless Communications",
"categories": "Applied Mathematics (Q1), Computer Science Applications (Q1), Electrical and Electronic Engineering (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Engineering, Mathematics"
},
{
"title": "Proceedings of the IEEE",
"categories": "Computer Science (miscellaneous) (Q1), Electrical and Electronic Engineering (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Engineering"
},
{
"title": "IEEE Transactions on Cybernetics",
"categories": "Computer Science Applications (Q1), Control and Systems Engineering (Q1), Electrical and Electronic Engineering (Q1), Human-Computer Interaction (Q1), Information Systems (Q1), Software (Q1)",
"publisher": "IEEE Advancing Technology for Humanity",
"areas": "Computer Science, Engineering"
},
{
"title": "Foundations and Trends in Computer Graphics and Vision",
"categories": "Computer Vision and Pattern Recognition (Q1)",
"publisher": "Now Publishers Inc",
"areas": "Computer Science"
},
{
"title": "IEEE Communications Magazine",
"categories": "Computer Networks and Communications (Q1), Computer Science Applications (Q1), Electrical and Electronic Engineering (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Engineering"
},
{
"title": "IEEE Transactions on Smart Grid",
"categories": "Computer Science (miscellaneous) (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science"
},
{
"title": "Journal of Service Research",
"categories": "Information Systems (Q1), Organizational Behavior and Human Resource Management (Q1), Sociology and Political Science (Q1)",
"publisher": "SAGE Publications Inc.",
"areas": "Business: Management and Accounting, Computer Science, Social Sciences"
},
{
"title": "International Journal of Information Management",
"categories": "Artificial Intelligence (Q1), Computer Networks and Communications (Q1), Information Systems (Q1), Information Systems and Management (Q1), Library and Information Sciences (Q1), Management Information Systems (Q1), Marketing (Q1)",
"publisher": "Elsevier Ltd.",
"areas": "Business: Management and Accounting, Computer Science, Decision Sciences, Social Sciences"
},
{
"title": "Synthesis Lectures on Communication Networks",
"categories": "Computer Networks and Communications (Q1), Hardware and Architecture (Q1), Software (Q1)",
"publisher": "Morgan and Claypool Publishers",
"areas": "Computer Science"
},
{
"title": "Information Fusion",
"categories": "Hardware and Architecture (Q1), Information Systems (Q1), Signal Processing (Q1), Software (Q1)",
"publisher": "Elsevier",
"areas": "Computer Science"
},
{
"title": "AI Open",
"categories": "Artificial Intelligence (Q1), Computer Science Applications (Q1), Computer Vision and Pattern Recognition (Q1), Human-Computer Interaction (Q1), Information Systems (Q1), Software (Q1)",
"publisher": "KeAi Communications Co.",
"areas": "Computer Science"
},
{
"title": "ACM Computing Surveys",
"categories": "Computer Science (miscellaneous) (Q1), Theoretical Computer Science (Q1)",
"publisher": "Association for Computing Machinery (ACM)",
"areas": "Computer Science, Mathematics"
},
{
"title": "IEEE Transactions on Pattern Analysis and Machine Intelligence",
"categories": "Applied Mathematics (Q1), Artificial Intelligence (Q1), Computational Theory and Mathematics (Q1), Computer Vision and Pattern Recognition (Q1), Software (Q1)",
"publisher": "IEEE Computer Society",
"areas": "Computer Science, Mathematics"
},
{
"title": "PRX Quantum",
"categories": "Applied Mathematics (Q1), Computer Science (miscellaneous) (Q1), Electrical and Electronic Engineering (Q1), Electronic: Optical and Magnetic Materials (Q1), Mathematical Physics (Q1), Physics and Astronomy (miscellaneous) (Q1)",
"publisher": "American Physical Society",
"areas": "Computer Science, Engineering, Materials Science, Mathematics, Physics and Astronomy"
},
{
"title": "Mathematical Programming Computation",
"categories": "Software (Q1), Theoretical Computer Science (Q1)",
"publisher": "Springer Verlag",
"areas": "Computer Science, Mathematics"
},
{
"title": "IEEE Transactions on Automatic Control",
"categories": "Computer Science Applications (Q1), Control and Systems Engineering (Q1), Electrical and Electronic Engineering (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Engineering"
},
{
"title": "IEEE Network",
"categories": "Computer Networks and Communications (Q1), Hardware and Architecture (Q1), Information Systems (Q1), Software (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science"
},
{
"title": "Journal of Strategic Information Systems",
"categories": "Information Systems (Q1), Information Systems and Management (Q1), Management Information Systems (Q1)",
"publisher": "Elsevier",
"areas": "Business: Management and Accounting, Computer Science, Decision Sciences"
},
{
"title": "Journal of Supply Chain Management",
"categories": "Economics: Econometrics and Finance (miscellaneous) (Q1), Information Systems (Q1), Management Information Systems (Q1), Marketing (Q1)",
"publisher": "Wiley-Blackwell",
"areas": "Business: Management and Accounting, Computer Science, Economics: Econometrics and Finance"
},
{
"title": "IEEE Transactions on Industrial Informatics",
"categories": "Computer Science Applications (Q1), Control and Systems Engineering (Q1), Electrical and Electronic Engineering (Q1), Information Systems (Q1)",
"publisher": "IEEE Computer Society",
"areas": "Computer Science, Engineering"
},
{
"title": "IEEE Signal Processing Magazine",
"categories": "Applied Mathematics (Q1), Electrical and Electronic Engineering (Q1), Music (Q1), Signal Processing (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Arts and Humanities, Computer Science, Engineering, Mathematics"
},
{
"title": "Annual Review of Control: Robotics: and Autonomous Systems",
"categories": "Artificial Intelligence (Q1), Control and Systems Engineering (Q1), Engineering (miscellaneous) (Q1), Human-Computer Interaction (Q1)",
"publisher": "Annual Reviews Inc.",
"areas": "Computer Science, Engineering"
},
{
"title": "Synthesis Lectures on Artificial Intelligence and Machine Learning",
"categories": "Artificial Intelligence (Q1)",
"publisher": "Morgan and Claypool Publishers",
"areas": "Computer Science"
},
{
"title": "MIS Quarterly: Management Information Systems",
"categories": "Computer Science Applications (Q1), Information Systems (Q1), Information Systems and Management (Q1), Management Information Systems (Q1)",
"publisher": "Management Information Systems Research Center",
"areas": "Business: Management and Accounting, Computer Science, Decision Sciences"
},
{
"title": "IEEE Internet of Things Journal",
"categories": "Computer Networks and Communications (Q1), Computer Science Applications (Q1), Hardware and Architecture (Q1), Information Systems (Q1), Information Systems and Management (Q1), Signal Processing (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Decision Sciences"
},
{
"title": "ACM Transactions on Graphics",
"categories": "Computer Graphics and Computer-Aided Design (Q1)",
"publisher": "Association for Computing Machinery (ACM)",
"areas": "Computer Science"
},
{
"title": "GigaScience",
"categories": "Computer Science Applications (Q1), Health Informatics (Q1)",
"publisher": "Oxford University Press",
"areas": "Computer Science, Medicine"
},
{
"title": "IEEE Transactions on Systems: Man: and Cybernetics: Systems",
"categories": "Computer Science Applications (Q1), Control and Systems Engineering (Q1), Electrical and Electronic Engineering (Q1), Human-Computer Interaction (Q1), Information Systems (Q1), Software (Q1)",
"publisher": "IEEE Advancing Technology for Humanity",
"areas": "Computer Science, Engineering"
},
{
"title": "Computers and Education",
"categories": "Computer Science (miscellaneous) (Q1), Education (Q1), E-learning (Q1)",
"publisher": "Elsevier Ltd.",
"areas": "Computer Science, Social Sciences"
},
{
"title": "Journal of Operations Management",
"categories": "Computer Science Applications (Q1), Industrial and Manufacturing Engineering (Q1), Management Science and Operations Research (Q1), Strategy and Management (Q1)",
"publisher": "John Wiley &, Sons Inc.",
"areas": "Business: Management and Accounting, Computer Science, Decision Sciences, Engineering"
},
{
"title": "Operations Research",
"categories": "Computer Science Applications (Q1), Management Science and Operations Research (Q1)",
"publisher": "INFORMS Institute for Operations Research and the Management Sciences",
"areas": "Computer Science, Decision Sciences"
},
{
"title": "npj Digital Medicine",
"categories": "Computer Science Applications (Q1), Health Informatics (Q1), Health Information Management (Q1), Medicine (miscellaneous) (Q1)",
"publisher": "Nature Publishing Group",
"areas": "Computer Science, Health Professions, Medicine"
},
{
"title": "IEEE Transactions on Fuzzy Systems",
"categories": "Applied Mathematics (Q1), Artificial Intelligence (Q1), Computational Theory and Mathematics (Q1), Control and Systems Engineering (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Engineering, Mathematics"
},
{
"title": "IEEE Transactions on Neural Networks and Learning Systems",
"categories": "Artificial Intelligence (Q1), Computer Networks and Communications (Q1), Computer Science Applications (Q1), Software (Q1)",
"publisher": "IEEE Computational Intelligence Society",
"areas": "Computer Science"
},
{
"title": "IEEE Transactions on Cognitive Communications and Networking",
"categories": "Artificial Intelligence (Q1), Computer Networks and Communications (Q1), Hardware and Architecture (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science"
},
{
"title": "Foundations and Trends in Communications and Information Theory",
"categories": "Applied Mathematics (Q1), Computer Networks and Communications (Q1)",
"publisher": "Now Publishers Inc",
"areas": "Computer Science, Mathematics"
},
{
"title": "AVS Quantum Science",
"categories": "Atomic and Molecular Physics: and Optics (Q1), Computational Theory and Mathematics (Q1), Computer Networks and Communications (Q1), Condensed Matter Physics (Q1), Electrical and Electronic Engineering (Q1), Electronic: Optical and Magnetic Materials (Q1), Physical and Theoretical Chemistry (Q1)",
"publisher": "American Institute of Physics",
"areas": "Chemistry, Computer Science, Engineering, Materials Science, Physics and Astronomy"
},
{
"title": "International Journal of Computer Vision",
"categories": "Artificial Intelligence (Q1), Computer Vision and Pattern Recognition (Q1), Software (Q1)",
"publisher": "Springer Netherlands",
"areas": "Computer Science"
},
{
"title": "Annual Reviews in Control",
"categories": "Control and Systems Engineering (Q1), Software (Q1)",
"publisher": "Elsevier Ltd.",
"areas": "Computer Science, Engineering"
},
{
"title": "Internet and Higher Education",
"categories": "Computer Networks and Communications (Q1), Computer Science Applications (Q1), Education (Q1), E-learning (Q1)",
"publisher": "Elsevier BV",
"areas": "Computer Science, Social Sciences"
},
{
"title": "ISPRS Journal of Photogrammetry and Remote Sensing",
"categories": "Atomic and Molecular Physics: and Optics (Q1), Computer Science Applications (Q1), Computers in Earth Sciences (Q1), Engineering (miscellaneous) (Q1), Geography: Planning and Development (Q1)",
"publisher": "Elsevier",
"areas": "Computer Science, Earth and Planetary Sciences, Engineering, Physics and Astronomy, Social Sciences"
},
{
"title": "npj Quantum Information",
"categories": "Computational Theory and Mathematics (Q1), Computer Networks and Communications (Q1), Computer Science (miscellaneous) (Q1), Statistical and Nonlinear Physics (Q1)",
"publisher": "Nature Partner Journals",
"areas": "Computer Science, Physics and Astronomy"
},
{
"title": "Information Systems Research",
"categories": "Computer Networks and Communications (Q1), Information Systems (Q1), Information Systems and Management (Q1), Library and Information Sciences (Q1), Management Information Systems (Q1)",
"publisher": "INFORMS Institute for Operations Research and the Management Sciences",
"areas": "Business: Management and Accounting, Computer Science, Decision Sciences, Social Sciences"
},
{
"title": "IEEE/CAA Journal of Automatica Sinica",
"categories": "Artificial Intelligence (Q1), Control and Optimization (Q1), Control and Systems Engineering (Q1), Information Systems (Q1)",
"publisher": "IEEE Advancing Technology for Humanity",
"areas": "Computer Science, Engineering, Mathematics"
},
{
"title": "Medical Image Analysis",
"categories": "Computer Graphics and Computer-Aided Design (Q1), Computer Vision and Pattern Recognition (Q1), Health Informatics (Q1), Radiological and Ultrasound Technology (Q1), Radiology: Nuclear Medicine and Imaging (Q1)",
"publisher": "Elsevier",
"areas": "Computer Science, Health Professions, Medicine"
},
{
"title": "IEEE Transactions on Industrial Electronics",
"categories": "Computer Science Applications (Q1), Control and Systems Engineering (Q1), Electrical and Electronic Engineering (Q1)",
"publisher": "",
"areas": "Computer Science, Engineering"
},
{
"title": "Foundations and Trends in Information Retrieval",
"categories": "Computer Science (miscellaneous) (Q1), Information Systems (Q1)",
"publisher": "Now Publishers Inc",
"areas": "Computer Science"
},
{
"title": "Journal of Management Information Systems",
"categories": "Computer Science Applications (Q1), Information Systems and Management (Q1), Management Information Systems (Q1), Management Science and Operations Research (Q1)",
"publisher": "M.E. Sharpe Inc.",
"areas": "Business: Management and Accounting, Computer Science, Decision Sciences"
},
{
"title": "npj Computational Materials",
"categories": "Computer Science Applications (Q1), Materials Science (miscellaneous) (Q1), Mechanics of Materials (Q1), Modeling and Simulation (Q1)",
"publisher": "Nature Publishing Group",
"areas": "Computer Science, Engineering, Materials Science, Mathematics"
},
{
"title": "Computer-Aided Civil and Infrastructure Engineering",
"categories": "Civil and Structural Engineering (Q1), Computational Theory and Mathematics (Q1), Computer Graphics and Computer-Aided Design (Q1), Computer Science Applications (Q1)",
"publisher": "Wiley-Blackwell Publishing Ltd",
"areas": "Computer Science, Engineering"
},
{
"title": "Journal of the ACM",
"categories": "Artificial Intelligence (Q1), Control and Systems Engineering (Q1), Hardware and Architecture (Q1), Information Systems (Q1), Software (Q1)",
"publisher": "Association for Computing Machinery (ACM)",
"areas": "Computer Science, Engineering"
},
{
"title": "IEEE Open Journal of the Communications Society",
"categories": "Computer Networks and Communications (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science"
},
{
"title": "Bioinformatics",
"categories": "Biochemistry (Q1), Computational Mathematics (Q1), Computational Theory and Mathematics (Q1), Computer Science Applications (Q1), Molecular Biology (Q1), Statistics and Probability (Q1)",
"publisher": "Oxford University Press",
"areas": "Biochemistry: Genetics and Molecular Biology, Computer Science, Mathematics"
},
{
"title": "Wiley Interdisciplinary Reviews: Computational Molecular Science",
"categories": "Biochemistry (Q1), Computational Mathematics (Q1), Computer Science Applications (Q1), Materials Chemistry (Q1), Physical and Theoretical Chemistry (Q1)",
"publisher": "John Wiley &, Sons Inc.",
"areas": "Biochemistry: Genetics and Molecular Biology, Chemistry, Computer Science, Materials Science, Mathematics"
},
{
"title": "Transportation Research Part C: Emerging Technologies",
"categories": "Automotive Engineering (Q1), Civil and Structural Engineering (Q1), Computer Science Applications (Q1), Management Science and Operations Research (Q1), Transportation (Q1)",
"publisher": "Elsevier Ltd.",
"areas": "Computer Science, Decision Sciences, Engineering, Social Sciences"
},
{
"title": "Robotics and Computer-Integrated Manufacturing",
"categories": "Computer Science Applications (Q1), Control and Systems Engineering (Q1), Industrial and Manufacturing Engineering (Q1), Mathematics (miscellaneous) (Q1), Software (Q1)",
"publisher": "Elsevier Ltd.",
"areas": "Computer Science, Engineering, Mathematics"
},
{
"title": "Array",
"categories": "Computer Science (miscellaneous) (Q1)",
"publisher": "Elsevier BV",
"areas": "Computer Science"
},
{
"title": "IEEE Transactions on Medical Imaging",
"categories": "Computer Science Applications (Q1), Electrical and Electronic Engineering (Q1), Radiological and Ultrasound Technology (Q1), Software (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Engineering, Health Professions"
},
{
"title": "Soft Robotics",
"categories": "Artificial Intelligence (Q1), Biophysics (Q1), Control and Systems Engineering (Q1)",
"publisher": "Mary Ann Liebert Inc.",
"areas": "Biochemistry: Genetics and Molecular Biology, Computer Science, Engineering"
},
{
"title": "IEEE Transactions on Vehicular Technology",
"categories": "Aerospace Engineering (Q1), Applied Mathematics (Q1), Automotive Engineering (Q1), Computer Networks and Communications (Q1), Electrical and Electronic Engineering (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Engineering, Mathematics"
},
{
"title": "Information Systems Journal",
"categories": "Computer Networks and Communications (Q1), Information Systems (Q1), Software (Q1)",
"publisher": "Wiley-Blackwell Publishing Ltd",
"areas": "Computer Science"
},
{
"title": "Journal of Manufacturing Systems",
"categories": "Control and Systems Engineering (Q1), Hardware and Architecture (Q1), Industrial and Manufacturing Engineering (Q1), Software (Q1)",
"publisher": "Elsevier",
"areas": "Computer Science, Engineering"
},
{
"title": "International Journal of Robotics Research",
"categories": "Applied Mathematics (Q1), Artificial Intelligence (Q1), Electrical and Electronic Engineering (Q1), Mechanical Engineering (Q1), Modeling and Simulation (Q1), Software (Q1)",
"publisher": "SAGE Publications Inc.",
"areas": "Computer Science, Engineering, Mathematics"
},
{
"title": "Journal of Statistical Software",
"categories": "Software (Q1), Statistics and Probability (Q1), Statistics: Probability and Uncertainty (Q1)",
"publisher": "University of California at Los Angeles",
"areas": "Computer Science, Decision Sciences, Mathematics"
},
{
"title": "IEEE Transactions on Robotics",
"categories": "Computer Science Applications (Q1), Control and Systems Engineering (Q1), Electrical and Electronic Engineering (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Engineering"
},
{
"title": "Journal of Big Data",
"categories": "Computer Networks and Communications (Q1), Hardware and Architecture (Q1), Information Systems (Q1), Information Systems and Management (Q1)",
"publisher": "SpringerOpen",
"areas": "Computer Science, Decision Sciences"
},
{
"title": "Information and Management",
"categories": "Information Systems (Q1), Information Systems and Management (Q1), Management Information Systems (Q1)",
"publisher": "Elsevier",
"areas": "Business: Management and Accounting, Computer Science, Decision Sciences"
},
{
"title": "Computer Science Review",
"categories": "Computer Science (miscellaneous) (Q1), Theoretical Computer Science (Q1)",
"publisher": "Elsevier Ireland Ltd",
"areas": "Computer Science, Mathematics"
},
{
"title": "IEEE Transactions on Intelligent Transportation Systems",
"categories": "Automotive Engineering (Q1), Computer Science Applications (Q1), Mechanical Engineering (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Engineering"
},
{
"title": "IEEE Transactions on Information Forensics and Security",
"categories": "Computer Networks and Communications (Q1), Safety: Risk: Reliability and Quality (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Engineering"
},
{
"title": "Computers in Industry",
"categories": "Computer Science (miscellaneous) (Q1), Engineering (miscellaneous) (Q1)",
"publisher": "Elsevier",
"areas": "Computer Science, Engineering"
},
{
"title": "Swarm and Evolutionary Computation",
"categories": "Computer Science (miscellaneous) (Q1), Mathematics (miscellaneous) (Q1)",
"publisher": "Elsevier BV",
"areas": "Computer Science, Mathematics"
},
{
"title": "IEEE Journal on Selected Topics in Signal Processing",
"categories": "Electrical and Electronic Engineering (Q1), Signal Processing (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Engineering"
},
{
"title": "ACM Transactions on Intelligent Systems and Technology",
"categories": "Artificial Intelligence (Q1), Theoretical Computer Science (Q1)",
"publisher": "Association for Computing Machinery (ACM)",
"areas": "Computer Science, Mathematics"
},
{
"title": "IEEE Transactions on Mobile Computing",
"categories": "Computer Networks and Communications (Q1), Electrical and Electronic Engineering (Q1), Software (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Engineering"
},
{
"title": "IEEE Geoscience and Remote Sensing Magazine",
"categories": "Computer Science (miscellaneous) (Q1), Earth and Planetary Sciences (miscellaneous) (Q1), Electrical and Electronic Engineering (Q1), Instrumentation (Q1)",
"publisher": "IEEE Geosciene and Remote Sensing Society",
"areas": "Computer Science, Earth and Planetary Sciences, Engineering, Physics and Astronomy"
},
{
"title": "Big Data Mining and Analytics",
"categories": "Artificial Intelligence (Q1), Computer Networks and Communications (Q1), Computer Science Applications (Q1), Information Systems (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science"
},
{
"title": "IEEE Transactions on Signal Processing",
"categories": "Electrical and Electronic Engineering (Q1), Signal Processing (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Engineering"
},
{
"title": "Artificial Intelligence Review",
"categories": "Artificial Intelligence (Q1), Linguistics and Language (Q1)",
"publisher": "Springer Netherlands",
"areas": "Computer Science, Social Sciences"
},
{
"title": "European Journal of Information Systems",
"categories": "Information Systems (Q1), Information Systems and Management (Q1), Library and Information Sciences (Q1), Management Information Systems (Q1)",
"publisher": "Taylor and Francis Ltd.",
"areas": "Business: Management and Accounting, Computer Science, Decision Sciences, Social Sciences"
},
{
"title": "International Journal of Information Management Data Insights",
"categories": "Artificial Intelligence (Q1), Industrial and Manufacturing Engineering (Q1), Information Systems (Q1), Information Systems and Management (Q1), Library and Information Sciences (Q1), Management Information Systems (Q1)",
"publisher": "Elsevier BV",
"areas": "Business: Management and Accounting, Computer Science, Decision Sciences, Engineering, Social Sciences"
},
{
"title": "Mechanical Systems and Signal Processing",
"categories": "Aerospace Engineering (Q1), Civil and Structural Engineering (Q1), Computer Science Applications (Q1), Control and Systems Engineering (Q1), Mechanical Engineering (Q1), Signal Processing (Q1)",
"publisher": "Academic Press Inc.",
"areas": "Computer Science, Engineering"
},
{
"title": "SIAM Journal on Computing",
"categories": "Computer Science (miscellaneous) (Q1), Mathematics (miscellaneous) (Q1)",
"publisher": "Society for Industrial and Applied Mathematics Publications",
"areas": "Computer Science, Mathematics"
},
{
"title": "Computers in Human Behavior",
"categories": "Arts and Humanities (miscellaneous) (Q1), Human-Computer Interaction (Q1), Psychology (miscellaneous) (Q1)",
"publisher": "Elsevier Ltd.",
"areas": "Arts and Humanities, Computer Science, Psychology"
},
{
"title": "IEEE Computational Intelligence Magazine",
"categories": "Artificial Intelligence (Q1), Theoretical Computer Science (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Mathematics"
},
{
"title": "Radiology: Artificial Intelligence",
"categories": "Artificial Intelligence (Q1), Radiological and Ultrasound Technology (Q1), Radiology: Nuclear Medicine and Imaging (Q1)",
"publisher": "Radiological Society of North America Inc.",
"areas": "Computer Science, Health Professions, Medicine"
},
{
"title": "Scientific data",
"categories": "Computer Science Applications (Q1), Education (Q1), Information Systems (Q1), Library and Information Sciences (Q1), Statistics and Probability (Q1), Statistics: Probability and Uncertainty (Q1)",
"publisher": "Nature Publishing Group",
"areas": "Computer Science, Decision Sciences, Mathematics, Social Sciences"
},
{
"title": "Big Data and Society",
"categories": "Communication (Q1), Computer Science Applications (Q1), Information Systems (Q1), Information Systems and Management (Q1), Library and Information Sciences (Q1)",
"publisher": "SAGE Publications Ltd",
"areas": "Computer Science, Decision Sciences, Social Sciences"
},
{
"title": "Journal of Network and Computer Applications",
"categories": "Computer Networks and Communications (Q1), Computer Science Applications (Q1), Hardware and Architecture (Q1)",
"publisher": "Academic Press Inc.",
"areas": "Computer Science"
},
{
"title": "IEEE Transactions on Control of Network Systems",
"categories": "Computer Networks and Communications (Q1), Control and Optimization (Q1), Control and Systems Engineering (Q1), Signal Processing (Q1)",
"publisher": "",
"areas": "Computer Science, Engineering, Mathematics"
},
{
"title": "European Journal of Operational Research",
"categories": "Computer Science (miscellaneous) (Q1), Industrial and Manufacturing Engineering (Q1), Information Systems and Management (Q1), Management Science and Operations Research (Q1), Modeling and Simulation (Q1)",
"publisher": "Elsevier",
"areas": "Computer Science, Decision Sciences, Engineering, Mathematics"
},
{
"title": "Nature Computational Science",
"categories": "Computer Networks and Communications (Q1), Computer Science Applications (Q1), Computer Science (miscellaneous) (Q1)",
"publisher": "Springer Nature",
"areas": "Computer Science"
},
{
"title": "IEEE Transactions on Image Processing",
"categories": "Computer Graphics and Computer-Aided Design (Q1), Software (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science"
},
{
"title": "IEEE Transactions on Knowledge and Data Engineering",
"categories": "Computational Theory and Mathematics (Q1), Computer Science Applications (Q1), Information Systems (Q1)",
"publisher": "IEEE Computer Society",
"areas": "Computer Science"
},
{
"title": "Wiley Interdisciplinary Reviews: Data Mining and Knowledge Discovery",
"categories": "Computer Science (miscellaneous) (Q1)",
"publisher": "John Wiley &, Sons Inc.",
"areas": "Computer Science"
},
{
"title": "IEEE Communications Standards Magazine",
"categories": "Computer Networks and Communications (Q1), Law (Q1), Management of Technology and Innovation (Q1), Safety: Risk: Reliability and Quality (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Business: Management and Accounting, Computer Science, Engineering, Social Sciences"
},
{
"title": "NAR Genomics and Bioinformatics",
"categories": "Applied Mathematics (Q1), Computer Science Applications (Q1), Genetics (Q1), Molecular Biology (Q1), Structural Biology (Q1)",
"publisher": "Oxford University Press",
"areas": "Biochemistry: Genetics and Molecular Biology, Computer Science, Mathematics"
},
{
"title": "Information Sciences",
"categories": "Artificial Intelligence (Q1), Computer Science Applications (Q1), Control and Systems Engineering (Q1), Information Systems and Management (Q1), Software (Q1), Theoretical Computer Science (Q1)",
"publisher": "Elsevier Inc.",
"areas": "Computer Science, Decision Sciences, Engineering, Mathematics"
},
{
"title": "SIAM Journal on Optimization",
"categories": "Applied Mathematics (Q1), Software (Q1), Theoretical Computer Science (Q1)",
"publisher": "Society for Industrial and Applied Mathematics Publications",
"areas": "Computer Science, Mathematics"
},
{
"title": "Journal of Machine Learning Research",
"categories": "Artificial Intelligence (Q1), Control and Systems Engineering (Q1), Software (Q1), Statistics and Probability (Q1)",
"publisher": "Microtome Publishing",
"areas": "Computer Science, Engineering, Mathematics"
},
{
"title": "Mathematical Programming",
"categories": "Mathematics (miscellaneous) (Q1), Software (Q1)",
"publisher": "Springer-Verlag GmbH and Co. KG",
"areas": "Computer Science, Mathematics"
},
{
"title": "Neural Networks",
"categories": "Artificial Intelligence (Q1), Cognitive Neuroscience (Q1)",
"publisher": "Elsevier Ltd.",
"areas": "Computer Science, Neuroscience"
},
{
"title": "Computer Methods in Applied Mechanics and Engineering",
"categories": "Computational Mechanics (Q1), Computer Science Applications (Q1), Mechanical Engineering (Q1), Mechanics of Materials (Q1), Physics and Astronomy (miscellaneous) (Q1)",
"publisher": "Elsevier",
"areas": "Computer Science, Engineering, Physics and Astronomy"
},
{
"title": "Briefings in Bioinformatics",
"categories": "Information Systems (Q1), Molecular Biology (Q1)",
"publisher": "Oxford University Press",
"areas": "Biochemistry: Genetics and Molecular Biology, Computer Science"
},
{
"title": "Journal of Intelligent Manufacturing",
"categories": "Artificial Intelligence (Q1), Industrial and Manufacturing Engineering (Q1), Software (Q1)",
"publisher": "Springer Netherlands",
"areas": "Computer Science, Engineering"
},
{
"title": "International Journal of Computer-Supported Collaborative Learning",
"categories": "Education (Q1), Human-Computer Interaction (Q1)",
"publisher": "Springer Publishing Company",
"areas": "Computer Science, Social Sciences"
},
{
"title": "Cell Reports Methods",
"categories": "Biochemistry (Q1), Biochemistry: Genetics and Molecular Biology (miscellaneous) (Q1), Biotechnology (Q1), Computer Science Applications (Q1), Genetics (Q1), Radiology: Nuclear Medicine and Imaging (Q1)",
"publisher": "Cell Press",
"areas": "Biochemistry: Genetics and Molecular Biology, Computer Science, Medicine"
},
{
"title": "Human Behavior and Emerging Technologies",
"categories": "Human-Computer Interaction (Q1), Social Psychology (Q1), Social Sciences (miscellaneous) (Q1)",
"publisher": "John Wiley &, Sons Inc.",
"areas": "Computer Science, Psychology, Social Sciences"
},
{
"title": "IEEE Transactions on Services Computing",
"categories": "Computer Networks and Communications (Q1), Computer Science Applications (Q1), Hardware and Architecture (Q1), Information Systems and Management (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Decision Sciences"
},
{
"title": "Information Processing and Management",
"categories": "Computer Science Applications (Q1), Information Systems (Q1), Library and Information Sciences (Q1), Management Science and Operations Research (Q1), Media Technology (Q1)",
"publisher": "Elsevier Ltd.",
"areas": "Computer Science, Decision Sciences, Engineering, Social Sciences"
},
{
"title": "Journal of Memory and Language",
"categories": "Artificial Intelligence (Q1), Experimental and Cognitive Psychology (Q1), Linguistics and Language (Q1), Neuropsychology and Physiological Psychology (Q1)",
"publisher": "Academic Press Inc.",
"areas": "Computer Science, Psychology, Social Sciences"
},
{
"title": "Pattern Recognition",
"categories": "Artificial Intelligence (Q1), Computer Vision and Pattern Recognition (Q1), Signal Processing (Q1), Software (Q1)",
"publisher": "Elsevier Ltd.",
"areas": "Computer Science"
},
{
"title": "Journal of Manufacturing Technology Management",
"categories": "Computer Science Applications (Q1), Control and Systems Engineering (Q1), Industrial and Manufacturing Engineering (Q1), Software (Q1), Strategy and Management (Q1)",
"publisher": "Emerald Group Publishing Ltd.",
"areas": "Business: Management and Accounting, Computer Science, Engineering"
},
{
"title": "Decision Support Systems",
"categories": "Arts and Humanities (miscellaneous) (Q1), Developmental and Educational Psychology (Q1), Information Systems (Q1), Information Systems and Management (Q1), Management Information Systems (Q1)",
"publisher": "Elsevier",
"areas": "Arts and Humanities, Business: Management and Accounting, Computer Science, Decision Sciences, Psychology"
},
{
"title": "IEEE/ASME Transactions on Mechatronics",
"categories": "Computer Science Applications (Q1), Control and Systems Engineering (Q1), Electrical and Electronic Engineering (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Engineering"
},
{
"title": "Knowledge-Based Systems",
"categories": "Artificial Intelligence (Q1), Information Systems and Management (Q1), Management Information Systems (Q1), Software (Q1)",
"publisher": "Elsevier",
"areas": "Business: Management and Accounting, Computer Science, Decision Sciences"
},
{
"title": "International Journal of Educational Technology in Higher Education",
"categories": "Computer Science Applications (Q1), Education (Q1), E-learning (Q1)",
"publisher": "Springer Netherlands",
"areas": "Computer Science, Social Sciences"
},
{
"title": "Future Generation Computer Systems",
"categories": "Computer Networks and Communications (Q1), Hardware and Architecture (Q1), Software (Q1)",
"publisher": "Elsevier",
"areas": "Computer Science"
},
{
"title": "IEEE/ACM Transactions on Networking",
"categories": "Computer Networks and Communications (Q1), Computer Science Applications (Q1), Electrical and Electronic Engineering (Q1), Software (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Engineering"
},
{
"title": "Journal of Field Robotics",
"categories": "Computer Science Applications (Q1), Control and Systems Engineering (Q1)",
"publisher": "John Wiley &, Sons Inc.",
"areas": "Computer Science, Engineering"
},
{
"title": "Proceedings of the VLDB Endowment",
"categories": "Computer Science (miscellaneous) (Q1)",
"publisher": "",
"areas": "Computer Science"
},
{
"title": "Information and Organization",
"categories": "Information Systems (Q1), Library and Information Sciences (Q1), Management Information Systems (Q1), Management of Technology and Innovation (Q1), Organizational Behavior and Human Resource Management (Q1)",
"publisher": "Elsevier Ltd.",
"areas": "Business: Management and Accounting, Computer Science, Social Sciences"
},
{
"title": "Transactions of the Association for Computational Linguistics",
"categories": "Artificial Intelligence (Q1), Communication (Q1), Computer Science Applications (Q1), Human-Computer Interaction (Q1), Linguistics and Language (Q1)",
"publisher": "MIT Press Journals",
"areas": "Computer Science, Social Sciences"
},
{
"title": "Journal of Computer-Mediated Communication",
"categories": "Computer Networks and Communications (Q1), Computer Science Applications (Q1)",
"publisher": "Oxford University Press",
"areas": "Computer Science"
},
{
"title": "Social Media and Society",
"categories": "Communication (Q1), Computer Science Applications (Q1), Cultural Studies (Q1)",
"publisher": "SAGE Publications Ltd",
"areas": "Computer Science, Social Sciences"
},
{
"title": "APL Photonics",
"categories": "Atomic and Molecular Physics: and Optics (Q1), Computer Networks and Communications (Q1)",
"publisher": "AIP Publishing LLC",
"areas": "Computer Science, Physics and Astronomy"
},
{
"title": "High-Confidence Computing",
"categories": "Computational Theory and Mathematics (Q1), Computer Networks and Communications (Q1), Computer Science Applications (Q1), Hardware and Architecture (Q1), Software (Q1)",
"publisher": "Elsevier BV",
"areas": "Computer Science"
},
{
"title": "IEEE Transactions on Affective Computing",
"categories": "Human-Computer Interaction (Q1), Software (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science"
},
{
"title": "Energy and AI",
"categories": "Artificial Intelligence (Q1), Energy (miscellaneous) (Q1), Engineering (miscellaneous) (Q1)",
"publisher": "Elsevier BV",
"areas": "Computer Science, Energy, Engineering"
},
{
"title": "IEEE Transactions on Parallel and Distributed Systems",
"categories": "Computational Theory and Mathematics (Q1), Hardware and Architecture (Q1), Signal Processing (Q1)",
"publisher": "IEEE Computer Society",
"areas": "Computer Science"
},
{
"title": "Applied Soft Computing Journal",
"categories": "Software (Q1)",
"publisher": "Elsevier BV",
"areas": "Computer Science"
},
{
"title": "Telematics and Informatics",
"categories": "Communication (Q1), Computer Networks and Communications (Q1), Electrical and Electronic Engineering (Q1), Law (Q1)",
"publisher": "Elsevier Ltd.",
"areas": "Computer Science, Engineering, Social Sciences"
},
{
"title": "Expert Systems with Applications",
"categories": "Artificial Intelligence (Q1), Computer Science Applications (Q1), Engineering (miscellaneous) (Q1)",
"publisher": "Elsevier Ltd.",
"areas": "Computer Science, Engineering"
},
{
"title": "IEEE Intelligent Systems",
"categories": "Artificial Intelligence (Q1), Computer Networks and Communications (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science"
},
{
"title": "PLoS Computational Biology",
"categories": "Cellular and Molecular Neuroscience (Q1), Computational Theory and Mathematics (Q1), Ecology (Q1), Ecology: Evolution: Behavior and Systematics (Q1), Genetics (Q1), Modeling and Simulation (Q1), Molecular Biology (Q1)",
"publisher": "Public Library of Science",
"areas": "Agricultural and Biological Sciences, Biochemistry: Genetics and Molecular Biology, Computer Science, Environmental Science, Mathematics, Neuroscience"
},
{
"title": "Virtual and Physical Prototyping",
"categories": "Computer Graphics and Computer-Aided Design (Q1), Industrial and Manufacturing Engineering (Q1), Modeling and Simulation (Q1), Signal Processing (Q1)",
"publisher": "Taylor and Francis Ltd.",
"areas": "Computer Science, Engineering, Mathematics"
},
{
"title": "IEEE Transactions on Information Theory",
"categories": "Computer Science Applications (Q1), Information Systems (Q1), Library and Information Sciences (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Social Sciences"
},
{
"title": "Journal of Combinatorial Theory. Series B",
"categories": "Computational Theory and Mathematics (Q1), Discrete Mathematics and Combinatorics (Q1), Theoretical Computer Science (Q1)",
"publisher": "Academic Press Inc.",
"areas": "Computer Science, Mathematics"
},
{
"title": "ACM Transactions on Information Systems",
"categories": "Business: Management and Accounting (miscellaneous) (Q1), Computer Science Applications (Q1), Information Systems (Q1)",
"publisher": "Association for Computing Machinery (ACM)",
"areas": "Business: Management and Accounting, Computer Science"
},
{
"title": "Network Neuroscience",
"categories": "Applied Mathematics (Q1), Artificial Intelligence (Q1), Computer Science Applications (Q1), Neuroscience (miscellaneous) (Q1)",
"publisher": "MIT Press Journals",
"areas": "Computer Science, Mathematics, Neuroscience"
},
{
"title": "Physics of Life Reviews",
"categories": "Agricultural and Biological Sciences (miscellaneous) (Q1), Artificial Intelligence (Q1), Physics and Astronomy (miscellaneous) (Q1)",
"publisher": "Elsevier",
"areas": "Agricultural and Biological Sciences, Computer Science, Physics and Astronomy"
},
{
"title": "IEEE Transactions on Dependable and Secure Computing",
"categories": "Computer Science (miscellaneous) (Q1), Electrical and Electronic Engineering (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Engineering"
},
{
"title": "VLDB Journal",
"categories": "Hardware and Architecture (Q1), Information Systems (Q1)",
"publisher": "Springer New York",
"areas": "Computer Science"
},
{
"title": "Artificial Intelligence",
"categories": "Artificial Intelligence (Q1), Linguistics and Language (Q1)",
"publisher": "Elsevier",
"areas": "Computer Science, Social Sciences"
},
{
"title": "Digital Communications and Networks",
"categories": "Communication (Q1), Computer Networks and Communications (Q1), Hardware and Architecture (Q1)",
"publisher": "Chongqing University of Posts and Telecommunications",
"areas": "Computer Science, Social Sciences"
},
{
"title": "IEEE Communications Letters",
"categories": "Computer Science Applications (Q1), Electrical and Electronic Engineering (Q1), Modeling and Simulation (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Engineering, Mathematics"
},
{
"title": "Computers and Geotechnics",
"categories": "Computer Science Applications (Q1), Geotechnical Engineering and Engineering Geology (Q1)",
"publisher": "Elsevier BV",
"areas": "Computer Science, Earth and Planetary Sciences"
},
{
"title": "Database : the journal of biological databases and curation",
"categories": "Agricultural and Biological Sciences (miscellaneous) (Q1), Biochemistry: Genetics and Molecular Biology (miscellaneous) (Q1), Information Systems (Q1), Medicine (miscellaneous) (Q1)",
"publisher": "Oxford University Press",
"areas": "Agricultural and Biological Sciences, Biochemistry: Genetics and Molecular Biology, Computer Science, Medicine"
},
{
"title": "Proceedings of the ACM on Programming Languages",
"categories": "Safety: Risk: Reliability and Quality (Q1), Software (Q1)",
"publisher": "Association for Computing Machinery (ACM)",
"areas": "Computer Science, Engineering"
},
{
"title": "Science China Information Sciences",
"categories": "Computer Science (miscellaneous) (Q1)",
"publisher": "Science Press (China)",
"areas": "Computer Science"
},
{
"title": "IEEE Transactions on Emerging Topics in Computational Intelligence",
"categories": "Artificial Intelligence (Q1), Computational Mathematics (Q1), Computer Science Applications (Q1), Control and Optimization (Q1)",
"publisher": "Institute of Electrical and Electronics Engineers Inc.",
"areas": "Computer Science, Mathematics"
},
{
"title": "Computers and Industrial Engineering",
"categories": "Computer Science (miscellaneous) (Q1), Engineering (miscellaneous) (Q1)",
"publisher": "Elsevier Ltd.",
"areas": "Computer Science, Engineering"
},
{
"title": "Computer Assisted Language Learning",
"categories": "Computer Science Applications (Q1), Linguistics and Language (Q1)",
"publisher": "Taylor and Francis Ltd.",
"areas": "Computer Science, Social Sciences"
},
{
"title": "Journal of Computational Physics",
"categories": "Applied Mathematics (Q1), Computational Mathematics (Q1), Computer Science Applications (Q1), Modeling and Simulation (Q1), Numerical Analysis (Q1), Physics and Astronomy (miscellaneous) (Q1)",
"publisher": "Academic Press Inc.",
"areas": "Computer Science, Mathematics, Physics and Astronomy"
},
{
"title": "Engineering",
"categories": "Chemical Engineering (miscellaneous) (Q1), Computer Science (miscellaneous) (Q1), Energy Engineering and Power Technology (Q1), Engineering (miscellaneous) (Q1), Environmental Engineering (Q1), Materials Science (miscellaneous) (Q1)",
"publisher": "Elsevier Ltd.",
"areas": "Chemical Engineering, Computer Science, Energy, Engineering, Environmental Science, Materials Science"
},
{
"title": "Journal of the Association for Information Systems",
"categories": "Computer Science Applications (Q1), Information Systems (Q1)",
"publisher": "Association for Information Systems",
"areas": "Computer Science"
},
{
"title": "Engineering Applications of Artificial Intelligence",
"categories": "Artificial Intelligence (Q1), Control and Systems Engineering (Q1), Electrical and Electronic Engineering (Q1)",