Tagged Questions
1
vote
4answers
33 views
Combine incomplete dataframes in R into matrix
I have a list of dataframes in R, each loaded from a different file containing ranks. For example the files could contain finishing positions for different athletes in different races.
The same ...
4
votes
1answer
21 views
R How to remove a level of lists from a list of lists
I have created some lists within a list and would like to be able have each sublist element to be an individual element at the top level.
For example to create some dummy data:
pp <- ...
0
votes
1answer
35 views
Calculate e.g. a mean in a list with multi-column data.frames
I have a list of several data.frames. Each data.frame has several columns.
By using
mean(mylist$first_dataframe$a
I can get the mean for a in this one data.frame.
However I do not know how to ...
0
votes
2answers
35 views
R: Function to search a text string and return dates and prices in two vectors
I have been given the following prompt:
Given a vector of text strings, V.text, write a function that extracts likely dollar amounts and dates from each string and returns them as separate vector ...
1
vote
2answers
36 views
Iterating over the named and unnamed elements separately in an R list
In R, I have a list that contains both named elements and unnamed elements. I want to iterate over the whole list and apply a function that only takes the element for unnamed elements and apply a ...
3
votes
1answer
37 views
Specify length of list element as index in lapply
I am using lapply to select elements from vectors in a list, but not all vectors in the list include the same number of elements. I typically use:
lapply(some.list,"[[",n)
were n is the index of ...
1
vote
2answers
36 views
Subsetting of Lists in R
I had a few questions about subsetting a named list in R using the [] operator:
For example, consider the list formals <- list(x = DOUBLE, y = DOUBLE, z = NULL). In this example, DOUBLE is treated ...
0
votes
1answer
33 views
Querying list items that are vectors
NB: Quite a beginner, so probably missing something obvious.
I am trying to write some generalizable code to do some factor-based analysis in R. I have a list of factors and their levels such that
...
0
votes
2answers
30 views
Getting elements of a list in R
This is my problem:
There is a predefined list named gamma with three entries: gamma$'2' is 2x2 matrix gamma$'3' a 3x3 matrix and gamma$'4' a 4x4 matrix. I would like to have function that returns ...
-3
votes
0answers
45 views
R: similarity between lists
I need some sort of similarity function that can tell me if two lists are similar.
The lists can be scaled so [1,2,3] == [10,20,30]
Order matters so [1,2,3] != [2,1,3]
Matching approximate values ...
0
votes
1answer
36 views
R - create iterable list/dataframe from unique()
I'd like to get the unique elements from a column. That seems straight forward. Both of these work, but I'm not getting the object type I'd like:
userlist <- as.list(somebigdf$username)
userlist ...
3
votes
3answers
38 views
Can list objects be created in R that name themselves based on input object names?
It would be very helpful to me to be able to create an R list object without having to specify the names of each element. For example:
a1<-1
a2<-20
a3<-1:20
b <- list(a1,a2,a3, ...
1
vote
1answer
38 views
R : Check whether particular number is in the list
Here is my situation :
I have a list called sc
> sc
[[1]]
[1] 1 6 11 16 21 26 31 36 41 46 51 52
[[2]]
[1] 2 7 12 17 22 27 32 37 42 47 53 54
[[3]]
[1] 3 8 13 18 23 28 33 38 43 48 55 56
...
0
votes
2answers
45 views
Error while storing ggplots in list. Impossible to plot multiple ggplot, but possible to plot them seperately
I'm currently working on the effects of environmental variables on the toxicity of a shellfish. This toxicity happens only on certain years. I would like to compare time series of 15 different ...
4
votes
3answers
51 views
Select row N based on values from row N-1 across list of data frames
I've searched through previous answered questions and haven't been able to construct a functioning solution yet. Here's my situation with demo data:
Say I have subjects complete a computer task where ...
0
votes
2answers
51 views
R - Why does rep() seemingly change behaviour of lists
When I started to preinitialize lists of list in R which should be filled afterwards I wondered about the behaviour of list objects when used as value in rep(). When I am trying the following...
...
4
votes
2answers
56 views
Converting a column of type 'list' to multiple columns in a data frame
I have a data frame with one column which is a list, like so:
>head(movies$genre_list)
[[1]]
[1] "drama" "action" "romance"
[[2]]
[1] "crime" "drama"
[[3]]
[1] "crime" "drama" "mystery"
...
0
votes
1answer
32 views
Finding indices of all matches between two lists
I need to take subsets from a list of documents based on a random sample. I know there are a lot of questions about matching on stackoverflow, but I didn't see one that addressed my question.
To ...
1
vote
1answer
30 views
Searching for a vector in a list
This might seem like a silly question, but after spending some time looking for an (easy) solution, I could not find it.
I have a list of vectors:
l <- list(c(1, 2), c(5, 10))
and I want to ...
0
votes
0answers
39 views
Element Name within a List in R that contains Brackets
I have a list and need to assign a name to an element within that list that happens to contain brackets, but I need to do this without converting the name to a quoted string. For example:
try = ...
2
votes
1answer
50 views
subsetting a df by group, looping through scatter plots
I'd like to automate generation of a few hundred scatter plots, but I'm not having much success with a compact way to handle the subsetting. The data frame has three fields of interest:
site ...
0
votes
1answer
26 views
Condition Means by Group
I have a data set such that str(data) gives
'data.frame': 216 obs. of 14 variables:
$ X. : int 4 45 46 47 48 198 199 200 201 21 ...
$ market : Factor w/ 2 levels ...
1
vote
1answer
59 views
Looping and storing results over many data frames
I want to to perform at least six looping steps in R. My data sets are 28 files stored in one folder. Each file has 22 rows (21 individual cases and one row for column names) and columns as follows: ...
1
vote
1answer
30 views
How to extract Ecdf value from the Ecdf() return?
The answer for This question here suggest a way by applying ecdf.
However I am using Ecdf() from package Hmisc for it provides a convenient way to do a ccdf(Complementary Cumulative Distribution ...
0
votes
1answer
36 views
Two-dimensional data structure of objects
I would like to store an object in a two-dimensional data structure in R. I have searched and tried several solutions, but none of them do what I want. This is what I had in mind:
S = ...
2
votes
1answer
46 views
Remove elements of a list explicitly
I have this list:
myList <- list(rnorm(10), rnorm(10), rnorm(10))
names(myList) <- c("one", "two", "three")
$one
[1] -0.07587506 -0.09997924 -0.41846732 1.41542651 -0.58678093 0.56909465 ...
1
vote
1answer
45 views
Extracting colour values from map object
I have created a OpenStreetMap object, onto which i have plotted some points. Right now, i am trying to obtain the colour-values of the grid values of these points. (for example - if one of the points ...
1
vote
2answers
37 views
how th output the unequal sized list into file in R language
data like this:
b <- list(
structure(c(2L, 11L, 52L, 63L, 123L), .Names = c("danazol",
"methyltestosterone", "ethinylestradiol", "methimazole", "ethionamide"
)),
structure(c(6L, 9L, 16L, 49L, ...
-3
votes
0answers
245 views
convert attribute R xml object into dataframe
My xml files are processed fine with the XML package into R. Here is how the root document looks, in one example - there are no values, only attributes and nodes within nodes - with attributes.
...
1
vote
1answer
26 views
Accessing and changing list element attributes
The background to this is that I'm mostly a Python programmer who has some passing familiarity with R. I've been tasked to look at an R script that was written by a Perl programmer who used for and ...
1
vote
3answers
76 views
Recursive object-listing
Is there an elegant way in R to recursively turn an arbitrary deep list (containing lists and vectors) into a vector of paths? For example, convert this:
list(
home = list(
jerry = c("R", ...
0
votes
0answers
39 views
Extract list object slot into function with R
I've fitted 28 arma+garch models with a function and put the 28 fits all togheter via sapply: `
garch_models <- sapply(returns, garchAuto)`
Now I have the following strucutre (only a extract of ...
0
votes
1answer
51 views
Passing values to a sourced file in R
Is there a way in R to pass the values of some variables, say strings, defined in a script to another script that is being sourced so that the latter can use them without having to declare them? Eg:
...
1
vote
1answer
111 views
working with large lists that become too big for RAM when operated on
Short of working on a machine with more RAM, how can I work with large lists in R, for example put them on disk and then work on sections of it?
Here's some code to generate the type of lists I'm ...
34
votes
1answer
555 views
R: Why is the [[ ]] approach for subsetting a list faster than using $?
I've been working on a few projects that have required me to do a lot of list subsetting and while profiling code I realised that the object[["nameHere"]] approach to subsetting lists was usually ...
2
votes
3answers
64 views
concatenating Lists in R
I have written a function that it's output is a list. I want to put my function into a loop and I'd like to store output of each iteration (which is of course a list) into a bigger list. In other ...
1
vote
4answers
52 views
naming a list when returning values from data.table
When returning items to data.table, it would be nice if they automatically took on the names of the variables. How does one do this? This is what I mean:
require(data.table)
x = data.table(a=1:10, ...
2
votes
2answers
34 views
Create list with depth equal 2
I have a list with a depth equal 2. I would like to subscript that list as described in the following example:
my.list<-list(
a=list(
a1=1:10,
a2=11:20),
b=list(
b1=21:30,
...
0
votes
2answers
53 views
rbind all dataframes in a list of lists by name [duplicate]
I'd like to rbind all a dataframes in ALIST - how would I do this?
alist <- list(a = data.frame(1:3),
b = data.frame(4:6),
a = data.frame(7:9))
(ALIST <- ...
2
votes
1answer
49 views
Converting Dataframe to LIST
I wish to convert a dataframe to list. Here's an example dataframe:
colname name age address
1 John 22 Singapore
2 James 44 India
3 Jessie 21 ...
-1
votes
1answer
56 views
Variable Reference Elements of Lists in R [closed]
I have been using R for a number of years now and I keep expecting to stumble upon the answer to this basic question somewhere but somehow I can't seem to find it anywhere.
How do you use a variable ...
1
vote
2answers
56 views
Convert a matrix to a list of vectors in R
What is the most elegant way of converting a matrix to a list, where each element of the list is a vector containing the elements in a row of the matrix?
2
votes
2answers
62 views
How to select/find coordinates within a distance from a list (X/Y) using R
I have a data frame with list of X/Y locations (>2000 rows). What I want is to select or find all the rows/locations based on a max distance. For example, from the data frame select all the locations ...
0
votes
1answer
29 views
Averaging multiple time series contained in a list object month-by-month
I have a list object with multiple slots, 2 in this example, each containing a time series of monthly data over 5 yrs (60 values). I want to calculate an "average" time series from these two i.e the ...
2
votes
1answer
47 views
Replicate elements of a list in an array in R
I am new to this forum and R, so beforehand my apologies if my question is not clear or I don't folllow the 'unwritten rules' of this forum.
I am doing a simulation study in R with a for loop that ...
-2
votes
1answer
36 views
Convert part of dataframe to character list in R
I am attempting to extract the header info from a large table and create a character list (so that I can use this list as a list of the variables contained in my table). I extract the header info in ...
0
votes
2answers
100 views
Split dataset by grouping variable to create multiple bar plots at once
I have a large dataset that looks like this:
time, precip, grp
2005-09-30 11:45:00,1.1,1
2005-09-30 23:45:00,1.5,1
2005-10-01 23:45:00,0.2,2
2005-10-02 11:45:00,0.3,2
...
2
votes
3answers
69 views
Extracting matrices from list of list sub-elements keeping the list/sub-list indices for the matrix
New to r and was hoping to find an elegant way of solving what seems like a simple problem. The context of the problem is as follows: I am running regressions for a set of companies at rolling ...
1
vote
1answer
47 views
Finding groups of contiguous numbers in a list [duplicate]
This is a duplicate question to this, except for R rather than Python.
I'd like to identify groups of contiguous (some people call them continuous) integers in a list, where duplicate entries are ...
3
votes
2answers
44 views
Applying a vectorized function to a list by un-listing, then re-listing
Suppose you have a list of character vectors:
set.seed(42)
x <- lapply(sample(10:50), function(x) {
sapply(1:x, function(y) {
paste(sapply(y, sample, x=letters, size=sample(5:10, 1)), ...
