Skip to main content

All Questions

Tagged with
0 votes
2 answers
624 views

How to perform looping and iteration of a script in R?

I am running an R script to analyze some biological data. Example of the snippet data and script is provided below. This data file has many columns (but I would like to focus on 5th column- Gene). I ...
Mohammed Toufiq's user avatar
2 votes
1 answer
236 views

Apply a recursive function to a nested list while preserving the classes of sublists

I have a nested list called inputs: library(htmltools) library(shiny) inputs = tagList( selectInput('first', 'FIRST', letters), checkboxInput('second', 'SECOND') ) str(inputs, max.level = 1) ...
user51462's user avatar
  • 1,768