Found 1703 bookmarks
Newest
Code Syntax Helper
Code Syntax Helper
Online syntax highlighting for more than 100 languages, including C#, Java, PHP, Basic, Perl, Python, Pascal, SQL, JavaScript and others including rare and obscure ones!.
·tohtml.com·
Code Syntax Helper
Writing R extensions
Writing R extensions
Writing R Extensions covers how to create your own packages, write R help files, and the foreign language (C, C++, Fortran, …) interfaces.
·colinfay.me·
Writing R extensions
RStudio Open-Source Packages - RStudio
RStudio Open-Source Packages - RStudio
In 2019, RStudio spent over 50% of its engineering resources on open-source software, and led contributions to over 250 open-source projects, targeting a broad range of areas.
·rstudio.com·
RStudio Open-Source Packages - RStudio
Grammarly
Grammarly
Grammarly makes sure everything you type is easy to read, effective, and mistake-free. Try it today:
·app.grammarly.com·
Grammarly
R for Excel Users
R for Excel Users
This is a workshop for RStudio::conf(2020) in San Francisco, California
·rstudio-conf-2020.github.io·
R for Excel Users
BookDown
BookDown
A guide to authoring books with R Markdown, including how to generate figures and tables, and insert cross-references, citations, HTML widgets, and Shiny apps in R Markdown. The book can be exported to HTML, PDF, and e-books (e.g. EPUB). The book style is customizable. You can easily write and preview the book in RStudio IDE or other editors, and host the book wherever you want (e.g. bookdown.org).
·bookdown.org·
BookDown
R Markdown Cookbook
R Markdown Cookbook
This book showcases short, practical examples of lesser-known tips and tricks to helps users get the most out of these tools. After reading this book, you will understand how R Markdown documents are transformed from plain text and how you may customize nearly every step of this processing. For example, you will learn how to dynamically create content from R code, reference code in other documents or chunks, control the formatting with customer templates, fine-tune how your code is processed, and incorporate multiple languages into your analysis.
·bookdown.org·
R Markdown Cookbook
Data Wrangling with R
Data Wrangling with R
Master the art of data wrangling with the R programming language.
·dw-r.netlify.com·
Data Wrangling with R
SimpleProgrammer
SimpleProgrammer
Learn how to program, improve your career and develop your people skills. Let’s make thecomplex simple and tackle the mental aspects of being a software developer together.
·simpleprogrammer.com·
SimpleProgrammer
Software Carpentry
Software Carpentry
Teaching researchers the foundational computing skills they need to get more done in less time
·software-carpentry.org·
Software Carpentry
Yixuam Qiu
Yixuam Qiu
Yixuan's blogs on statistcs, programming, and more
·statr.me·
Yixuam Qiu
Dean Attali - R-Shiny consultant
Dean Attali - R-Shiny consultant
R-Shiny developer and consultant with a MSc in Bioinformatics and a Bachelor of Computer Science. Previously a software engineer at Google, IBM, and Wish.com.
·deanattali.com·
Dean Attali - R-Shiny consultant
Performance: when algorithmics meets mathematics – Florian Privé – R(cpp) enthusiast
Performance: when algorithmics meets mathematics – Florian Privé – R(cpp) enthusiast
In this post, I talk about performance through an efficient algorithm I developed for finding closest points on a map. This algorithm uses both concepts from mathematics and algorithmics. Problem to solve This problem comes from a recent question on StackOverflow. I have two matrices, one is 200K rows long, the other is 20K. For each row (which is a point) in the first matrix, I am trying to find which row (also a point) in the second matrix is closest to the point in the first matrix. This is the first method that I tried on a sample dataset: # Test dataset: longitude and latitude pixels.l...
·privefl.github.io·
Performance: when algorithmics meets mathematics – Florian Privé – R(cpp) enthusiast
Vectorization in R: Why?
Vectorization in R: Why?
Here are my notes from a recent talk I gave on vectorization at a Davis R Users’ Group meeting. Thanks to Vince Buffalo, John Myles White, and Hadley Wickham for their input as I was preparing this. Feedback welcome! Beginning R users are often told to “vectorize” their code. Here, I try to explain why vectorization can be advantageous in R by showing how R works under the hood. Now, remember, premature optimization is the root of all evil (Knuth).
·noamross.net·
Vectorization in R: Why?