Skip to content

Commit

Permalink
Merge pull request #84 from rseng/update/analysis-2023-08-16
Browse files Browse the repository at this point in the history
Update from update/analysis-2023-08-16
  • Loading branch information
vsoch authored Aug 16, 2023
2 parents 5fd6f25 + b6d41b0 commit 30f0dc6
Show file tree
Hide file tree
Showing 96 changed files with 37,155 additions and 30,417 deletions.
20 changes: 10 additions & 10 deletions _data/language_counts.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"unknown": 163,
"Python": 1980,
"Jupyter Notebook": 394,
"unknown": 165,
"Python": 2002,
"Jupyter Notebook": 402,
"Modelica": 1,
"Shell": 29,
"HTML": 81,
"HTML": 82,
"Perl": 45,
"R": 624,
"C++": 529,
"Java": 100,
"C": 310,
"R": 630,
"C++": 533,
"Java": 101,
"C": 311,
"Rust": 28,
"JavaScript": 78,
"JavaScript": 79,
"AMPL": 1,
"MATLAB": 38,
"Haskell": 2,
Expand Down Expand Up @@ -39,7 +39,7 @@
"Cuda": 9,
"TeX": 21,
"Ruby": 11,
"Mathematica": 17,
"Mathematica": 18,
"OCaml": 2,
"FORTRAN": 28,
"Verilog": 2,
Expand Down
263 changes: 259 additions & 4 deletions _data/repos.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions _data/repos_counts_languages.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"Python": 5368,
"R": 2178,
"Cpp": 437,
"Js": 1537,
"Python": 5393,
"R": 2183,
"Cpp": 439,
"Js": 1587,
"Go": 246
}
12 changes: 6 additions & 6 deletions _data/stats.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"python_deps": 4402,
"cpp_deps": 437,
"r_deps": 2178,
"js_deps": 1537,
"python_deps": 4423,
"cpp_deps": 439,
"r_deps": 2183,
"js_deps": 1587,
"go_deps": 246,
"total_repos": 4957,
"total_parsed": 2544
"total_repos": 5004,
"total_parsed": 2561
}
20 changes: 20 additions & 0 deletions _repos/github/AlexMaraio/WeakLensingQML/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
CMAKE_MINIMUM_REQUIRED(VERSION 3.15)
PROJECT(star_mask_generator)
SET(CMAKE_CXX_STANDARD 17)

# Locate GSL
INCLUDE_DIRECTORIES("/home/maraio/Codes/gsl-build/include/")
LINK_DIRECTORIES("/home/maraio/Codes/gsl-build/lib/")
LINK_LIBRARIES(gsl)
LINK_LIBRARIES(gslcblas)

# Locate HealPix
INCLUDE_DIRECTORIES("/home/maraio/Codes/Healpix_3.70/include/healpix_cxx/")
LINK_DIRECTORIES("/home/maraio/Codes/Healpix_3.70/lib/")
LINK_LIBRARIES(healpix_cxx)

# Set compilation flags
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Ofast -march=native -flto -Wall -Wextra -fopenmp")

# Add our .cpp file
ADD_EXECUTABLE(star_mask_generator main.cpp)
17 changes: 17 additions & 0 deletions _repos/github/AlexMaraio/WeakLensingQML/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: github/AlexMaraio/WeakLensingQML
layout: repo
tipue_search_active: true
exclude_from_search: true
---
# Software Credit

|Manager|Name|Credit|
|-------|----|------|
|CMakeLists.txt|github/AlexMaraio/WeakLensingQML|0.01|


> Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed.

- Generated by [CiteLang](https://github.com/vsoch/citelang)
Binary file added _repos/github/AlexMaraio/WeakLensingQML/badge.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions _repos/github/AlexMaraio/WeakLensingQML/data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"CMakeLists.txt": {
"github/AlexMaraio/WeakLensingQML": {
"credit": 0.01,
"url": null
}
}
}
36 changes: 36 additions & 0 deletions _repos/github/EpiVec/TDLM/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
Package: TDLM
Type: Package
Title: Systematic Comparison of Trip Distribution Laws and Models
Version: 0.1.0
Authors@R:
c(person(given = "Maxime",
family = "Lenormand",
email = "maxime.lenormand@inrae.fr",
role = c("aut", "cre"),
comment = c(ORCID = "0000-0001-6362-3473"))
)
Description: The main purpose of this package is to propose a rigorous framework to fairly compare trip distribution laws and models as described in Lenormand et al. (2016) <doi:10.1016/j.jtrangeo.2015.12.008>.
Depends: R (>= 4.0.0)
License: GPL-3
Encoding: UTF-8
LazyData: true
LazyDataCompression: xz
Imports:
Ecume,
mathjaxr,
Rdpack(>= 1.0.0),
readr (>= 2.0.0),
rmarkdown (>= 2.0.0),
sf (>= 1.0.0)
RdMacros:
mathjaxr,
Rdpack
Suggests:
knitr,
testthat (>= 3.0.0)
VignetteBuilder: knitr
RoxygenNote: 7.2.3
BugReports: https://github.com/EpiVec/TDLM/issues
Roxygen: list(markdown = TRUE)
URL: https://epivec.github.io/TDLM/
Config/testthat/edition: 3
110 changes: 110 additions & 0 deletions _repos/github/EpiVec/TDLM/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
---
title: github/EpiVec/TDLM
layout: repo
tipue_search_active: true
exclude_from_search: true
---
# Software Credit

|Manager|Name|Credit|
|-------|----|------|
|cran|[Rdpack](https://geobosh.github.io/Rdpack/)|0.165|
|cran|js|0.163|
|cran|knitr|0.027|
|cran|testthat|0.027|
|cran|methods|0.027|
|cran|[rmarkdown](https://github.com/rstudio/rmarkdown)|0.023|
|cran|covr|0.021|
|cran|utils|0.016|
|cran|tibble|0.016|
|cran|R|0.016|
|cran|pbapply|0.014|
|cran|dplyr|0.014|
|cran|magrittr|0.014|
|cran|spatstat|0.014|
|cran|spatstat.geom|0.014|
|cran|stats|0.014|
|cran|withr|0.013|
|cran|transport|0.011|
|cran|kernlab|0.011|
|cran|e1071|0.011|
|cran|caret|0.011|
|cran|rlang|0.01|
|DESCRIPTION|github/EpiVec/TDLM|0.01|
|cran|vctrs|0.009|
|cran|tools|0.009|
|cran|xml2|0.007|
|cran|waldo|0.007|
|cran|tzdb|0.007|
|cran|stringi|0.007|
|cran|spelling|0.007|
|cran|datasets|0.007|
|cran|curl|0.007|
|cran|vroom|0.007|
|cran|R6|0.007|
|cran|lifecycle|0.007|
|cran|hms|0.007|
|cran|crayon|0.007|
|cran|clipr|0.007|
|cran|cli|0.007|
|cran|cleanrmd|0.006|
|cran|shiny|0.006|
|cran|sass|0.006|
|cran|katex|0.006|
|cran|downlit|0.006|
|cran|rsconnect|0.006|
|cran|fs|0.006|
|cran|dygraphs|0.006|
|cran|digest|0.006|
|cran|yaml|0.006|
|cran|xfun|0.006|
|cran|tinytex|0.006|
|cran|stringr|0.006|
|cran|jsonlite|0.006|
|cran|jquerylib|0.006|
|cran|htmltools|0.006|
|cran|fontawesome|0.006|
|cran|evaluate|0.006|
|cran|bslib|0.006|
|cran|wk|0.003|
|cran|tmap|0.003|
|cran|tidyselect|0.003|
|cran|tidyr|0.003|
|cran|terra|0.003|
|cran|stars|0.003|
|cran|spatstat.utils|0.003|
|cran|spatstat.linnet|0.003|
|cran|spatstat.random|0.003|
|cran|sp|0.003|
|cran|RSQLite|0.003|
|cran|RPostgreSQL|0.003|
|cran|RPostgres|0.003|
|cran|raster|0.003|
|cran|pool|0.003|
|cran|pillar|0.003|
|cran|odbc|0.003|
|cran|microbenchmark|0.003|
|cran|Matrix|0.003|
|cran|mapview|0.003|
|cran|maps|0.003|
|cran|lwgeom|0.003|
|cran|ggplot2|0.003|
|cran|blob|0.003|
|cran|units|0.003|
|cran|s2|0.003|
|cran|Rcpp|0.003|
|cran|grid|0.003|
|cran|grDevices|0.003|
|cran|graphics|0.003|
|cran|DBI|0.003|
|cran|classInt|0.003|
|cran|Ecume|0.002|
|cran|[mathjaxr](https://github.com/wviechtb/mathjaxr)|0.002|
|cran|[readr](https://readr.tidyverse.org)|0.002|
|cran|[sf](https://r-spatial.github.io/sf/)|0.002|


> Note that credit values are rounded and expanded (so shared dependencies are represented as one record) and may not add to 1.0. Rounded values that hit zero are removed.

- Generated by [CiteLang](https://github.com/vsoch/citelang)
Binary file added _repos/github/EpiVec/TDLM/badge.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 30f0dc6

Please sign in to comment.