Tagged Questions
0
votes
2answers
44 views
Rownames with parentheses: are they allowed in R?
I am trying to subset data, using names of work and test set
ws_data <- subset(data, grepl(paste0("v*[0-9]_",ws_names, collapse="|" ),
rownames(data))==TRUE)
It seems to work ok, but ...
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, ...
0
votes
2answers
75 views
Coefficient Variable Membership in R
I have worked up a horribly lengthy solution to this before using regular expressions but I hope there is a more native way to do it.
Given a model, perhaps like
data(tips, package="reshape2")
mod ...
1
vote
2answers
55 views
Changing multiple data frame column titles in r
The program that I am running creates three data frames using the following code:
datuniqueNDC <- data.frame(lapply(datlist, function(x) length(unique(x$NDC))))
datuniquePID <- ...
0
votes
2answers
84 views
Sorting names() based on dates
Im trying to sort columns for individual patients based on dates in those columns in R. I made an example data set, however, the data set does not return dates, but long numbers (no idea why). Forgive ...
2
votes
2answers
72 views
How add rownames with no dimensions in R
> Cases <- c(4,46,98,115,88,34)
> Cases
[1] 4 46 98 115 88 34
> str(Cases)
num [1:6] 4 46 98 115 88 34
I want to name row as "total.cases" and I got error attempt to set ...
1
vote
1answer
94 views
split vs by + subset
I want to split a data frame based on two columns, but I want the output to be a 2-D matrix of data frames, rather than a flat list of data frames. I can achieve what I want using by() and subset but ...
3
votes
1answer
632 views
rbind data.frames without names
I am trying to figure out why the rbind function is not working as intended when joining data.frames without names.
Here is my testing:
test <- data.frame(
id=rep(c("a","b"),each=3),
...
0
votes
2answers
96 views
how to change headers of a file using R?
Lets say I have this file (main)
Name samp1 samp2 samp3 samp4
pg1 0.43 0.32 0.21 0.54
pg2 0.43 0.22 1.00 0.44
pg3 0.11 0.99 0.78 0.54
pg4 0.65 0.32 0.12 0.23
I also have this header file below ...
1
vote
3answers
391 views
How to extract numeric values from a structure object in R
I need to extract numeric values from a variable which is a structure combined with numeric values and names
structure(c(-1.14332132657709, -1.1433213265771, -1.20580568266868,
-1.75735158849487, ...
1
vote
3answers
372 views
Function to add names to data frame
I'm have a data frame without columns:
df<-data.frame(v1=c(1:10), v2=seq(1, 100, length=10))
I want to change the header names to "X" and "Y"
I know I can do this using:
...
1
vote
3answers
216 views
Select certain row names
Is there any way to select all rows from a dataframe whose name in one column don't have a word?
Example:
From this data frame
Organism Value
Boa (sick) 3
Cat 1
Cat (sick) 2
Wolf ...
11
votes
2answers
144 views
You can abbreviate list names? Why?
This got me pretty bad. You can abbreviate list names? I never noticed it before and I got totally screwed for like a day. Can someone explain what is happening here and why it could be more useful ...
1
vote
1answer
137 views
How to pass data frame columns into a column vector to be used on RHS of regression model?
I have a list of 100 columns in a data frame Data1. One of these variables is the dependent variable. The others are predictors.
I need to extract 99 predictors into a column (say varlist) to be ...
4
votes
2answers
637 views
appending to a list with dynamic names, R
I have a list in R:
a <- list(n1 = "hi", n2 = "hello")
I would like to append to this named list but the names must be dynamic. That is, they are create from a string (for example: ...
1
vote
1answer
781 views
Subset data /extracting data based on first 7 letters
I have a huge data set with genotypic information from different populations. I would like to sort the data by population, but I don't know how.
I would like to sort by "pedigree_dhl". I was using ...
6
votes
2answers
897 views
Access and preserve list names in lapply function
I need to access list names inside the lapply function. I've found some threads online where it's said I should iterate through the names of the list to be able to fetch each list element name in my ...
3
votes
1answer
374 views
R: losing names of dimnames of a table after cbind or rbind
After cbind or rbind-ing a table object (for example, adding a margin of sums or somesuch), names of dimnames get lost (see y). I found this "workaround" but was wondering if there's an out of the bag ...
0
votes
2answers
308 views
How to get a 'clean' list of excel worksheet tab names in R with RODBC?
I'm new to R and even newer to using it with Excel. I want to get a list of all the worksheet names (Notes,Weights,Lengths) in an .xls file. You can see what I'm trying below - the problem is that the ...
4
votes
3answers
1k views
Dataframes in a list; adding a new variable with name of dataframe
I have a list of dataframes which I eventually want to merge while maintaining a record of their original dataframe name or list index. This will allow me to subset etc across all the rows. To ...
2
votes
4answers
256 views
Finding the names of all the columns in all the dataframes in a workspace
Assume that I have several dataframes in a workspace in R and I want a list of the names of the columns in all the dataframes.
I thought the following would work. But it does not. Try it in your own ...
6
votes
4answers
1k views
R: losing column names when adding rows to an empty data frame
I am just starting with R and encountered a strange behaviour: when inserting the first row in an empty data frame, the original column names get lost.
example:
> a<-data.frame(one = ...
5
votes
2answers
304 views
Is there a way to get a vector with the name of all functions that one could use in R?
I would like to have a call that returns me a vector with the names of all function that I could call in the current R session. Does anybody know how to achieve this?
(I would like to check user ...
4
votes
3answers
6k views
reading a csv file with repeated row names in R
I am trying to read a csv file with repeated row names but could not. The error message I am getting is Error in read.table(file = file, header = header, sep = sep, quote = quote, : duplicate ...
0
votes
3answers
3k views
how to assign to the names() attribute of the value of a variable in R
In R, "assign('x',v)" sets the object whose name is 'x' to v. Replace 'x' by the result of applying a text function to a variable x. Then "assign" shows its worth.
Unfortunately, ...
4
votes
4answers
3k views
R: access field values
I would like to know how I can access the individual fields contained in an R object. Or, more precisely, how to get R to tell me how.
For example, if I run the following code:
dx.ct <- ...