Skip to main content

Questions tagged [r]

R is a language and environment for statistical computing and graphics similar to S.

2 votes
1 answer
106 views

I have a tumor dataset in R that is a Seurat object. I am working on a project to develop a new visualization tool for single-cell RNA-seq data. I want to develop the visualization using JavaScript, ...
waldo_gb's user avatar
9 votes
4 answers
667 views

I write code in R, and often find myself attempting to optimize the code for better performance. In a given script that tackles a specific problem, I test different code alternatives and compare them ...
Emman's user avatar
  • 209
2 votes
0 answers
67 views

I have a frontend through which users can submit analysis requests, which are inserted into a database. These analysis requests are received in a NodeJS server using Postgres notify/listen. Using ...
Chintan Pathak's user avatar
0 votes
1 answer
71 views

I have a web application that depends upon a set of R analytics. These R analytics read data from a database and perform machine learning, so have high CPU use. The R analytics are accessed through ...
zola25's user avatar
  • 131
1 vote
0 answers
103 views

I am looking for a simple software architecture that is able to evaluate user data using different versions of algorithms. According to my concept, the user is able to upload tabular data via a Web ...
Mr. Rookie's user avatar
4 votes
1 answer
159 views

I am writing my first R package, converting my existing scripts into a bona fide package. I frequently use the magrittr pipe operator %>% in my code because I find it makes code more intuitively ...
Josh's user avatar
  • 151
1 vote
1 answer
220 views

Consider a "large-ish" data set (~2-5M rows) that goes through multiple stages of cleaning/processing: library(dplyr) largedat %>% mutate( # overwrite v1 based on others v1 = somefunc(...
r2evans's user avatar
  • 346
-1 votes
1 answer
195 views

ls and objects functions are both from the base package and are exactly the same as discussed here. I've seen other examples of duplicated functions (in the tidyverse and base if I remember correctly)....
ARandomUser's user avatar
4 votes
2 answers
396 views

I am a data scientist and do lots of programming in R/RStudio. I like to be organised (as I'm sure (hope) most programmers do) and as such I always use the Project feature in RStudio to keep my work ...
MusTheDataGuy's user avatar
6 votes
1 answer
537 views

I am a data scientist who programs in R, but am relatively new to using version control (yes, I know!) and I am still learning lots about it. FYI: I use BitBucket and Sourcetree I understand the ...
MusTheDataGuy's user avatar
1 vote
2 answers
240 views

In R, the simplest kind of value is an "atomic" vector with a primitive type like double, but it can have any length, so the term "atomic" is not what I want. Here's an example: I ...
Chris's user avatar
  • 159
0 votes
1 answer
791 views

I'm working on ASP.NET MVC project where controller calling static class that run R scripts from external R project Controller public ActionResult Index() { Rscript.Run("...
programmer's user avatar
0 votes
1 answer
83 views

This is probably a sloppy way to see it, but I wonder if the idea of longitudinal datasets (to be used in ggplot2, for instance), can be exlpained as complying with the criteria of data in a 1st ...
Dambo's user avatar
  • 101
6 votes
1 answer
2k views

Rstudio has a community version for free: https://www.rstudio.com/products/rstudio/#Desktop But mentions the license is AGPL v3. Does this effect the licensing or IP rights of code written on the ...
Bren's user avatar
  • 179
2 votes
0 answers
123 views

I'm currently in the process of writing a program in R to perform analysis of data from a mass spectrometry experiment. Well, that's the idea. I'm fairly new to R, and didn't actually perform the mass ...
user avatar

15 30 50 per page