Skip to content

Commit

Permalink
Update to use dimensions-free data
Browse files Browse the repository at this point in the history
Closes #283
  • Loading branch information
jmelot committed Oct 16, 2023
1 parent f057a82 commit f139485
Show file tree
Hide file tree
Showing 8 changed files with 51 additions and 8 deletions.
25 changes: 25 additions & 0 deletions fields/exclude.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,28 @@ Statistics
Structural engineering
Systems engineering
Telecommunications
Public administration
Soil science
Statistical physics
Pediatrics
Obstetrics
Intensive care medicine
Management
Marine engineering
Market economy
Gerontology
Humanities
Forestry
Economic growth
Environmental engineering
Environmental ethics
Environmental health
Environmental protection
Environmental resource management
Crystallography
Ancient history
Aesthetics
Biotechnology
Computational science
Computer architecture
Demography
22 changes: 20 additions & 2 deletions fields/expected.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ Composite material
Computational biology
Computational chemistry
Computational physics
Computational science
Computer architecture
Computer engineering
Computer graphics (images)
Computer hardware
Expand Down Expand Up @@ -144,3 +142,23 @@ Renewable Energy
Natural Resources
Consumption of Energy and Resources
Energy Systems
Advertising
Agronomy
Biotechnology
Botany
Cardiology
Chemical physics
Classics
Food science
Geomorphology
Hydrology
Microbiology
Molecular physics
Oceanography
Organic chemistry
Pathology
Physical chemistry
Surgery
Thermodynamics
Transport engineering
Water resource management
2 changes: 1 addition & 1 deletion github-metrics/src/data/config.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"start_year": 2016, "end_year": 2022, "last_updated": "July 07, 2023"}
{"start_year": 2017, "end_year": 2023, "last_updated": "October 16, 2023"}
2 changes: 1 addition & 1 deletion github-metrics/src/data/field_to_repos.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion github-metrics/src/data/fields.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
["Geometry", "weto", "Data science", "Gender studies", "Astrobiology", "Computational biology", "Computer engineering", "Nuclear magnetic resonance", "Geophysics", "Speech recognition", "Algebra", "Natural Resources", "Embedded system", "Particle physics", "World Wide Web", "Pharmacology", "Condensed matter physics", "Earth Systems", "Anatomy", "Automotive engineering", "Parallel computing", "Cognitive science", "Emissions", "Econometrics", "Industrial Ecology", "International economics", "Computer graphics (images)", "Radiology", "Simulation", "Cell biology", "Astrophysics", "Atmospheric sciences", "Astronomy", "Visual arts", "Theoretical physics", "Neuroscience", "riscv", "Knowledge management", "Computational chemistry", "Zoology", "Ecology", "Artificial intelligence", "Theoretical computer science", "Nuclear physics", "Media studies", "Immunology", "Genetics", "Consumption of Energy and Resources", "Finance", "Machine learning", "Topology", "Computational physics", "Control theory", "Virology", "Medical education", "Optics", "Mathematical analysis", "Computer architecture", "Operating system", "Information retrieval", "Computer security", "ai_safety", "Bioinformatics", "Molecular biology", "Computational science", "Reliability engineering", "Sustainable Development", "Quantum mechanics", "Social psychology", "Seismology", "Computer vision", "Quantum electrodynamics", "Linguistics", "Financial system", "Social science", "Computer hardware", "Acoustics", "Climate and Earth Science", "Evolutionary biology", "Multimedia", "Energy Storage", "Energy Systems", "Distributed computing", "Epistemology", "Renewable Energy", "Meteorology", "Cancer research", "Software engineering", "Pattern recognition", "Calculus", "Remote sensing", "Natural language processing", "Financial economics", "Mathematical optimization"]
["Computational biology", "Natural Resources", "Meteorology", "Renewable Energy", "Radiology", "Sustainable Development", "Pattern recognition", "Emissions", "Operating system", "Microbiology", "Evolutionary biology", "Neuroscience", "Organic chemistry", "Financial economics", "Nuclear physics", "Control theory", "Parallel computing", "Chemical physics", "Transport engineering", "Social science", "Molecular physics", "Pharmacology", "Finance", "Software engineering", "Information retrieval", "Oceanography", "Automotive engineering", "Surgery", "Machine learning", "Energy Systems", "Bioinformatics", "Computational chemistry", "Simulation", "Astronomy", "Calculus", "Multimedia", "Media studies", "Condensed matter physics", "Algebra", "Energy Storage", "Cardiology", "Cancer research", "Computational physics", "Astrobiology", "Genetics", "Natural language processing", "Geomorphology", "Computer security", "Social psychology", "riscv", "ai_safety", "Visual arts", "Molecular biology", "Earth Systems", "Epistemology", "Advertising", "Physical chemistry", "Remote sensing", "Data science", "Financial system", "Astrophysics", "Geophysics", "Gender studies", "Seismology", "Botany", "weto", "Computer vision", "Nuclear magnetic resonance", "Computer graphics (images)", "Thermodynamics", "Quantum electrodynamics", "Topology", "Artificial intelligence", "Acoustics", "Econometrics", "Classics", "Embedded system", "Optics", "Mathematical optimization", "Reliability engineering", "Food science", "Ecology", "Anatomy", "Medical education", "Geometry", "Cognitive science", "Virology", "Theoretical physics", "Linguistics", "Speech recognition", "Knowledge management", "Mathematical analysis", "Quantum mechanics", "Consumption of Energy and Resources", "Particle physics", "Atmospheric sciences", "Climate and Earth Science", "Industrial Ecology", "Agronomy", "World Wide Web", "Theoretical computer science", "Pathology", "Distributed computing", "Hydrology", "International economics", "Water resource management", "Cell biology", "Immunology", "Zoology"]
2 changes: 1 addition & 1 deletion github-metrics/src/data/id_to_repo.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion github-metrics/src/data/name_to_id.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion scripts/preprocess_for_website.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
)

NOW = datetime.now()
END_YEAR = NOW.year - 1 # if NOW.month > 6 else NOW.year - 1
END_YEAR = NOW.year if NOW.month > 6 else NOW.year - 1
START_YEAR = END_YEAR - 6


Expand Down

0 comments on commit f139485

Please sign in to comment.