All Questions
6 questions with no upvoted or accepted answers
3
votes
0
answers
900
views
What are points to consider when choosing between seq_along() and 1:length()
Recently, I have come across a code snippet from another R user on Stackoverflow who printed a list of data.frames using kableExtra by the following initial for loop for (i in 1:length(listofdfs)) ...
0
votes
1
answer
36
views
R: Remove Rows From Data Frame [i] of List 1 based on Index values from Data Frame [j] of List 2
I have the following problem:
I have one list of data frames that includes a heart rate signal for each participant. Furthermore, I have a list of data frames which include the index values of ...
0
votes
0
answers
61
views
Delete an element from a list while iterating in R
I have this R function where i make some computations like average and median of such values comes from a website. fromTime and toTime are two dates in a string format like 2020-10-12. computationType ...
0
votes
0
answers
56
views
looping through a specific parts of a nested list
I am creating a function that allows me to multiply my data by random proportions, sums them thus creating a mixture of my data multiplied by this Proportion.
For example, if I have 4 data sets, I ...
0
votes
0
answers
51
views
Iterating a vector over a list in R
I am dealing with some computational feature extracting problem from RNA data, and I found myself unable to deal with this question:
I have n sequences (say two for example) from which I obtained an ...
0
votes
0
answers
43
views
How to store DGEExact R objects in a list?
I'm using the edgeR package to perform pair-wise comparisons but I'm encountering problems when I try to store the results of the exactTest function as I loop through all the datasets. There are 28 ...