Rogue Scholar Beiträge

language

In this post I will provide some examples of what has changed between rtweet 0.7.0 and rtweet 1.0.2.I hope both the changes and this guide will help all users.I highlight the most important and interesting changes in this blog post, and for a full list of changes you can consult it on the NEWS. Big breaking changes More consistent output This is probably what will affect the most users.All functions that return data about

These days web Application Programming Interfaces (APIs) are everywhere (scientific data sources, your system for Customer relationship management, cat facts API…). Do you need to write some R code wrapping a web resource such as an API? Packaging it up might be useful to you or your team for the same reason as any code.

Veröffentlicht in recology
Autor Scott Chamberlain

You’ve experienced an HTTP redirect (or URL redirect, or URL forwarding) even if you haven’t noticed. We all use browsers (I assume, since you are reading this), either on a phone or laptop/desktop computer. Browsers don’t show all the HTTP requests going on in the background, some of which are redirects.

Veröffentlicht in Europe PMC News Blog
Autor Europe PMC Team

Along with life science publications, Europe PMC offers a way to search through biomedical grants from Europe PMC funders using the Grant Finder tool. Last year, Europe PMC partnered with the Medical Research Council (MRC), the UK Collaborative on Development Research (UKCDR) and the Global Research Collaboration for Infectious Disease Preparedness (GLoPID-R), to extend its search to include COVID-19 grant data from other funding organisations.

Veröffentlicht in rOpenSci - open tools for open science

terrainr version 0.4.0 is now on CRAN! This version is a relatively minor updatethat shouldn’t impact most workflows, but makes some changes to improve thelogic and consistency of the package. The rest of this post runs through thechanges you can expect if you update.packages any time soon!What’s a terrainr? terrainr is an R package for theretrieval and visualization of spatial data.

Veröffentlicht in rOpenSci - open tools for open science
Autoren Dennis Irorere, Scott Chamberlain

Introduction Few months ago, I embarked on a full stack spatial data project at work. The project kicked off amazingly, until I was almost backed to the wall when I discovered that some of the data sources were served via a GraphQL API. Before now, I haven’t worked with GraphQL. But, I have heard a lot about it and how amazing it is for querying data.

Veröffentlicht in lab.sub - Articles
Autor Mathias Göbel

I really like the file drop feature of ownCloud. You can configure a directory to receive files from a thrid party without authentication and with no troubles. You get a URL and that is everything you have to share. People will see a simple file upload field and can push their files directly into your ownCloud. Easy.

Veröffentlicht in rOpenSci - open tools for open science
Autoren Scott Chamberlain, Maëlle Salmon

In October last year we wrote about the CRAN Checks API (https://cranchecks.info). Since then there have been four new major items introduced: documentation, notifications, search, and a new version of the cchecks R package.

Veröffentlicht in Europe PMC News Blog
Autor Europe PMC Team

[Europe PMC]{style=“background-color: transparent; color: #1155cc; font-family: "arial"; font-size: 11pt; font-style: normal; font-weight: 400; text-decoration: underline; vertical-align: baseline; white-space: pre-wrap;”}[ is a searchable database that allows access to life sciences publications worldwide including preprints and micropublications.

Veröffentlicht in rOpenSci - open tools for open science
Autor Scott Chamberlain

Testing is a crucial component to any software package. Testing makes surethat your code does what you expect it to do; and importantly, makes it safer to makechanges moving forward because a good test suite will tell you if a change has brokenexisting functionality. Our recent community call on testing is a niceplace to get started with testing. One way to make testing even harder is through including HTTP requests.