3
votes
3answers
72 views

Reduce PDF file size of plots by filtering hidden objects

While producing scatter plots of many points in R (using ggplot() for example), there might be many points that are behind the others and not visible at all. For instance see the plot below: This ...
0
votes
1answer
26 views

To filter/subset a data frame based on character vector with R

I have a data frame look like this : data.frame' 45678 obs. of 130 variables $ Seqeunce : chr "AAAAAIGGR" "AAAAAIGGRPNYYGNEGGR" "AAAAASSNPGGGPEMVR" ... $ IDs : chr "1404" "4963" ...
2
votes
1answer
65 views

Increasing high powers for elements of vector in R

I would like to find an expression in R for the following: Given a vector of n elements, I would like to return a vector for which the first element is to the power 1, the second element is to the ...
3
votes
4answers
94 views

Very slow assignment to vector when unnamed (becoming named) in R

my code hit a performance snag that I could reproduce in this snippet rm (z) z = c() system.time({z[as.character(1:10^5)] = T}) user system elapsed 48.716 0.023 48.738 I tried to pre-allocate ...
2
votes
2answers
29 views

Sum vector with corresponding name

Let say you have a list of vector: L = list() L[[1]]= c(2,34,6,7,3) L[[2]]= c(3,4,6,8,1) names(L[[1]])=c("A","B","C","D","E") names(L[[2]])=c("A","R","C","D","F") L ## [[1]] ## A B C D E ## 2 ...
2
votes
3answers
44 views

R and rbind making entries without the same length be zero

Say I have two vectors v1 and v2 and that I want to call rbind(v1, v2). However, supposed length(v1) > length(v2). From the documentation I have read that the shorter vector will be recycled. Here is ...
4
votes
1answer
81 views

Rewriting slow R function in C++ & Rcpp

I have this line of R code: croppedDNA <- completeDNA[,apply(completeDNA,2,function(x) any(c(FALSE,x[-length(x)]!=x[-1])))] What it does is identify the sites (cols) in a matrix of DNA sequences ...
-3
votes
0answers
37 views

R datatypes, levels, factors and vectors [closed]

Consider the following R code: raw <- read.csv(fileName, header=TRUE) s <- vector() for(i in 1 : dim(raw)[1]){ s <- c(s, levels(factor(raw[i,]))) } Information: raw is a dataframe ...
1
vote
2answers
51 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?
1
vote
3answers
52 views

Compare a vector with selected element from a matrix

I want to compare a huge vector with selected element from a matrix in R. A is a matrix and B is a vector. I want to compare each element of B with selected element from A. C and D are selection ...
0
votes
4answers
49 views

Find vector within vector in R [duplicate]

I have seen many methods in order to get the number or to find value in vector or even many values such as : which(a %in% c(2,3)) But the problem is that don't respect the order of my vector [2 3], ...
3
votes
3answers
66 views

Concatenate vector elements in groups

What is the most elegant way of converting list1 to list2, and also list2 to list1? list1<- c('a','b','c','d','e','f','g','h','i') list2<- c('abc','def','ghi') i.e: contactenate elements in ...
1
vote
3answers
65 views

Common elements of vectors with multiple elements in r

How to efficiently find common elements of two vectors with duplicate elements? Example: v1 <- c(1, 1, 2, 3, 3, 4) v2 <- c(1, 1, 1, 3, 4, 5) commonElements <- c(1, 1, 3, 4) intersect ...
3
votes
1answer
53 views

R split numeric vector at position

I am wondering about the simple task of splitting a vector into two at a certain index: splitAt <- function(x, pos){ list(x[1:pos-1], x[pos:length(x)]) } a <- c(1, 2, 2, 3) > splitAt(a, ...
1
vote
2answers
78 views

plotting DCC results with R

I have been running a dcc garch on R; the results is presented as matrix I would like to extract the second column as a vector to plot, with date on the x-axis. For the moment, if I define DCCrho ...
0
votes
2answers
52 views

R idiom for vector lookup

Here is a function which I wrote: lookup <- function (keys, values, key, default) { found <- which(keys == key) if (length(found) == 1) return(values[found]) if (length(found) == 0) ...
0
votes
1answer
43 views

Minimum number of common elements from a list of multiple vectors

I have a list containing several vectors, e.g.: ls=list(c("g1","g3","g6"),c("g1","g4"),c("g2","g5"),c("g2","g5"),c("g2")) I want to capture the minimum number of elements so that I have at least ...
1
vote
3answers
73 views

split vectors of words by every n words (vectors are in a list)

How best to split vectors of words that are in a list? Here's what I'm currently doing (thanks to geektrader's answer over here), but it makes RStudio tremble and freeze quite a bit. This question is ...
2
votes
3answers
39 views

R, reorganizing a vector by computing means of values according to another vector

I have 2 vectors: a <- c(6,5,3,1,6,7,4,5,3,2) b <- c(2,1,1,2,3,2,1,3,3,2) I want a simple code that returns a vector composed of the means of all values in the vector "a" at the positions ...
0
votes
1answer
34 views

Convert character variable column to vector

Have a .csv with 4 columns of values: data<-read.csv("C:\\Users\\mtatange\\Desktop\\Dataset.csv") A B C D 1 1 NA 1 2 2 4 1 ...
2
votes
3answers
50 views

Indices of a unique vector

I have 2 vectors in R. I can generate a vector composed of their unique elements, but I need to know the indices of each element of the vector a, for example : x <- c(0, 0, 2, 4, 8) y <- c(1, ...
2
votes
3answers
57 views

Multiply vector by matrix in R should return vector

In R, I want to multiply a 1x3 vector by a 3x3 matrix to produce a 1x3 vector. However R returns a matrix: > v = c(1,1,0) > m = matrix(c(1,2,1,3,1,1,2,2,1),nrow=3,ncol=3,byrow=T) > v*m ...
1
vote
2answers
62 views

Loop for matrices multiplication

I have this matrix: V1 V2 V3 V4 V5 V6 V7 V8 [1,] 0.8399983 0.01558029 0.00000000 0.0000000 0.00000000 0.00000000 0.00000000 0 [2,] ...
0
votes
1answer
68 views

Get information from one column to another

I started working with R recently and I am trying to find a solution for the following problem: I have a data.frame with several columns. One of them contains file names with all the information ...
0
votes
1answer
35 views

I need to define 3 vectors xA, xB, and xC. Where each vector has 3 values such as (“A”,1), (“A”,2) and so on. [closed]

I need to define 3 vectors xA, xB, and xC. Where each vector has 3 values such as ("A",1), ("A",2) and so on. Every time I try to enter xA<- ("A",1),("A",2),.. and so on R just says unexpected ",". ...
4
votes
2answers
59 views

Efficiently find adjacent values in vector

I have an R data frame with a vector of numbers representing positions along a chromosome and a vector of gene names. I also have a vector of start positions of interesting elements on that ...
0
votes
2answers
29 views

R a collection of kmeans objects

I am new to R and most of my experience is in Java. I am trying to do the following: clusterWeeks <- function() { kmV = list() #a list of kmeans objects from each week for(i in ...
1
vote
2answers
59 views

R, getting the Subset of row vectors in a Matrix

in R, I want to create a matrix which is a subset of a matrix mat2 based on some criteria stored in another vector km$cluster$. Specifically, I want to get a subset of mat2 where the row names from ...
0
votes
2answers
53 views

R, iterating over the row vectors of a matrix

I have some vector vect and I want to iterate over the row vectors vof a matrix and calculate: cov(v, vect). I tried: for(vect in mat2) #where mat2 is a 215 by 31 matrix However, each ...
0
votes
1answer
52 views

What is the alternate to 'in' command we have in Python, for R? [duplicate]

Say I have a numerical vector in R. And I want to see if a particular integer is present in the vector or not. We can do that easily in python using 'in' command and an if statement may be. Do we ...
3
votes
3answers
68 views

Vectorized insertion of elements

I wrote a R function insert to insert a given element e at a given position p of a vector v. Here it is: insert <- function(v, e, p) { if (length(e) != 1 || length(p) != 1) { ...
1
vote
3answers
85 views

How to split a list of strings into odd and even elements in R

Sorry, I'm failing at even the most elementary part of this task. I have a 50-long list of strings, and I initialize an empty vector 25 long, but even manually assigning the 1st element of the one to ...
0
votes
1answer
21 views

How to write in a membership vector to use in modularity() function with R

I have a membership vector created with another software and I am stuck to write it into R so that I can use iGraph' modularity function to calculate modularity of this community division.  Can ...
1
vote
3answers
27 views

Complement of empty index vector is empty index vector again

I know this question was already posted but the answer was a trick to solve the given problem some other way, but the core question remained unanswered. The question is this. somevector <- 1:5 ...
1
vote
1answer
51 views

split a character vector every n words

How can I split a single character vector of words into a list of vectors where each vector in the list contains a certain number of words? For example: # reproducible data examp <- "Before ...
0
votes
1answer
39 views

How to calculate how many times vector appears in a list? in R

I have a list of 10,000 vectors, and each vector might have different elements and different lengths. I would like to know how many unique vectors I have and how often each unique vector appears in ...
1
vote
1answer
45 views

How to generate normal distributed multidimensional points

I need to generate a random multidimensional clustered data. For this I want to generate few uniform distributed multidimensional points (centers) and then many normal distributed points around each ...
7
votes
5answers
139 views

Fast function to add vector elements by their names

I wrote this R function that, given any number of vectors (...) combines them by summing the respective element values ​​based on their names. add_vectors <- function(...) { a <- list(...) ...
3
votes
1answer
62 views

In R from a named number how do I extract just the number (without the name)?

I am looking for just the value of the B1(newx) linear model coefficient, not the name. I just want the 0.5 value. I do not want the name "newx" newx<-c(0.5,1.5.2.5) newy<-c(2,3,4) ...
2
votes
1answer
54 views

how to randomly distribute numbers among the elements of a vector? in R

here's my problem. suppose I have a vector: vec <- c("a","b","c","d","e","f") and I want to randomly distribute 6 values among the elements of my vector, in a way that sometimes an element gets ...
-1
votes
1answer
67 views

mean/sd as a value, not a vector

the mean and sd functions in R return a numerical vector of length 1. I would like to calculate mean and standard deviation as a single value, not a vector. This seems simple enough: just take the ...
-4
votes
1answer
122 views

How do you create vectors with specific intervals in R?

I'm new to R and had a question about creating vectors.. If I do a<-1:10, "a" has the values 1,2,3,4,5,6,7,8,9,10. My question is how do you create a vector with specific intervals between its ...
4
votes
4answers
94 views

Fill vector with binary values using ifelse

Depending on the values in the vector 'p' I want to set the value in another vector to either 0 or 1. I tried the following newvector=rep(0,length(p)) ...
1
vote
1answer
88 views

Get number of rows with same value in one column and positive binary value in another column

(Sorry for the weird title but I just couldn't think of a short way to put this) Since I managed to oversimplify my problem in the last question I asked, I'm providing you with the actual problem ...
1
vote
2answers
105 views

Using frequency of column value in dataframe to calculate new column value

So I have an example dataframe that hold the columns id, count and username with id and count being numbers and username being a string. For every row of the dataframe I want to set a value of a new ...
0
votes
2answers
41 views

Efficient reduction of an R vector to a summary vector

I'm trying to do simulation of a sequence, which is of length N (varies between 10k and 3M) represented by a vector which has n 1's and s 0's where N = n+s. I'd like to reduce this to a vector on the ...
2
votes
2answers
68 views

multiplication of mixed dataframe with vector

R beginner here: After searching for what must be a simple answer for over a day, decided to post my first ever question on here: I would like to multiply (or divide) numeric columns in a dataframe ...
2
votes
2answers
135 views

R + combine a list of vectors into a single vector

I have a single list of numeric vector and I want to combine them into one vector. But I am unable to do that. This list can have one element common across the list element. Final vector should not ...
0
votes
2answers
42 views

Extracting specific data from predefined R function

I am trying to figure out how I can extract a specific portion of output from a predefined R function. A simple exampled would be, if I would like to store the mean value calculated via the summary() ...
3
votes
3answers
101 views

Count unique elements in data frame row and return one with maximum occurrence [duplicate]

Is it possible to count unique elements in data frame row and return one with maximum occurrence and as result form the vector. example: a a a b b b b -> b c v f w w r t -> w s s d f b b b ...

1 2 3 4 5 7