Git Product home page Git Product logo

Comments (5)

richard987 avatar richard987 commented on August 24, 2024 2

Just backing you up there

from cranlogs.app.

gaborcsardi avatar gaborcsardi commented on August 24, 2024 1

Thanks, should be OK now.

from cranlogs.app.

Polkas avatar Polkas commented on August 24, 2024

Hi, for the purpose of satisfying curiosity you could download the data directly from RStudio.
Something like that:

install.packages('pacman')
pacman::p_load(
               doParallel,
               foreach,
               readr            
)
###HERE CHANGE THE WINDOW
DATES = seq.Date(as.Date('2018-08-06'),as.Date('2018-08-16'),1)

cl <- makePSOCKcluster(max(parallel::detectCores()-1,1))
doParallel::registerDoParallel(cl)

Rlogs_merged = foreach(i = 1:length(DATES),.combine = "rbind") %dopar%
{
  my_data = tryCatch(readr::read_csv(paste0("http://cran-logs.rstudio.com/2018/",DATES[i],'.csv.gz'),col_names = c('date','time','size','r_version','r_arch','r_os','package','version','country','ip_id'),col_types =  "ccicccccci"),    
                     error= function(e) data.frame(date=NA , time=NA, size=NA, r_version=NA, r_arch=NA, r_os=NA, package=NA, version=NA, country=NA, ip_id=NA))
  
  my_data
  
}
stopCluster(cl)

PS. cranlogs.app offers REST to db built under gz csv files gathered from links like http://cran-logs.rstudio.com/2018/2018-08-16.csv.gz
/MN

from cranlogs.app.

richard987 avatar richard987 commented on August 24, 2024

I noticed that the counts had stopped updating as well, for example:
https://cranlogs.r-pkg.org/badges/grand-total/featurefinder
as well as all the major packages eg
Rcpp, stringi, ggplot2, glue, rlang
on
https://hadley.shinyapps.io/cran-downloads/

from cranlogs.app.

msberends avatar msberends commented on August 24, 2024

from cranlogs.app.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.