Tagged Questions
0
votes
1answer
46 views
Creating a 3D matrix with R?
I'm trying to build a 3D matrix by looping variables in a large data set (please see the 'head' of the data below). Specifically, I need to create a matrix with as many rows as the maximum number of ...
1
vote
1answer
41 views
R Matrix process with conditional additions
I have to pre-process a big matrix. To make my example easier to understand I will use the following matrix:
Raw data
Where col = people and row = skills
In R my matrix is:
test <- ...
2
votes
1answer
34 views
compare top half matrix with bottom half
If I have the following data:
mat1 <- matrix( c(0,2,3,1,0,1,1,1,1), nrow=3 )
rownames(mat1) <- LETTERS[1:3]
colnames(mat1) <- LETTERS[1:3]
mat1
# A B C
#A 0 1 1
#B 2 0 1
#C 3 1 1
...
0
votes
1answer
34 views
Linear regression on multiple rows in matrix in R
Just sitting with my bachelors thesis, and using R, to run linear regressions on some financial data.
My problem: I have a large matrix of data, that I have split up into rows, because I want to run ...
0
votes
1answer
34 views
Saving matrix in r with appropriate row and column headings [duplicate]
I want to save a matrix in csv format through write.table function. Using the following command, the column names move one cell back. Is there any way to keep the column names intact? Thanks
mdat ...
4
votes
2answers
31 views
How to construct a function call to pmax from the columns of a matrix
I want to use pmax to compute the row-wise maximium of a matrix A:
A = matrix(sample(1:20),10,2)
pmax(A[,1],A[,2])
this works fine. But the problem is that I don't know the size of A, so the call ...
2
votes
2answers
42 views
alternative to passing large matrices in R
Using Globals instead of passing large arrays in Matlab
my question is precisely the same as the one above but I want an answer with respect to R.
I am right now passing huge matrices between ...
1
vote
2answers
69 views
How to convert a matrix of strings into matrix of 0 and 1's
Hi I have a dataset which looks like this
name1 a b c d
name2 a c e g i
name3 t j i m n z
dput output:
structure(c("name1", "name2", "name3", "a ", "a", "r ", "b", "c", "k ", "c", "e", ...
2
votes
3answers
43 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 ...
1
vote
3answers
33 views
How to order columns in a matrix based on final column values?
I'm trying to reorder existing matrices in R based on final column values but I can't seem to find a solution. I've tried order(), but no luck. I'm obviously overlooking something. Any ideas? For ...
2
votes
1answer
35 views
Matrix multiplication with scattered NA values
I'm looking to multiply two matrices together in R, one of which may contain randomly placed NA values (i.e., there's no reason they will be all in a row or column), but I still want an output like ...
0
votes
2answers
31 views
How do I label the rows and columns in a diagonal matrix?
I'm creating a diagonal matrix of variances in R, thus:
D <- diag(data $ Variances,
length(data $ Variances),
length(data $ Variances))
Does anyone know how to add row and ...
4
votes
2answers
52 views
convert data.frame to a numeric matrix
I have a data frame taken from a .csv-file which contains numeric and character values. I want to convert this data frame into a matrix. All containing information is numbers (the non-number-rows I ...
1
vote
0answers
25 views
`KFAS`: how to fit time-varying variance in `regSSM` function
Please, consider the following example from KFAS package:
install.packages('KFAS')
require(KFAS)
# Drivers
model <- structSSM(y = log(Seatbelts[,"drivers"]), trend = "level", seasonal = "time",
...
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
1answer
32 views
R: use two names of rows of data-frame to form column names in matrix
I have data of the sort
District Year Social.Assistance Danger.Poverty GINI S80S20
Charlottenburg-Wilmersdorf 2011 14.6 12.2 0.33 5.1
...
2
votes
2answers
88 views
Rotate a Matrix in R
I have a matrix like this
|1|2|3|
|1|2|3|
|1|2|3|
Is there an easy way to rotate the entire matrix to get these results:
|1|1|1|
|2|2|2|
|3|3|3|
and
|3|2|1|
|3|2|1|
|3|2|1|
and last but not ...
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 ...
2
votes
1answer
30 views
arranging matrix - network graphs
I was trying to make a network graph, using the function gplot from library(sna). The graph would represent the links between different fields.
I have the following data:
MTM <- ...
-4
votes
1answer
43 views
Repeated random samples for t-tests in R
I have data from two time periods (1999 and 2009). The data is in two columns, one called "values" (4.960001, 4.847222, ... 3.639985, 3.849003) and one called "time" (1999, 1999, ..., 2009, 2009):
...
1
vote
3answers
46 views
Checking row membership of a matrix
I have a matrix in which each row vector has a name. I would like to check row membership in my matrix, that is I would like to turn the following into R code:
if(mat contains "rowname")
{ do ...
3
votes
3answers
47 views
Another way to access matrix elements in R
mat <- matrix(c(1,2,3,4,5,6,7,8,9), ncol=3)
mat[1:2, 1:2]
returns new matrix(c(1,2,4,5), ncol=2).
is there anyway to access the matrix elements like plot's x, y position?
some function(mat, ...
6
votes
2answers
86 views
Obtaining matrix row as matrix
What is the shortest way to obtain row from matrix as matrix?
> x<-matrix(1:9,nrow=3,byrow=TRUE)
> x
[,1] [,2] [,3]
[1,] 1 2 3
[2,] 4 5 6
[3,] 7 8 9
> ...
1
vote
2answers
31 views
Handling NAs when calculating matching distances with a the 'proxy' package
I have a function that calculates simple matching distances in a matrix with ordinal data:
require(proxy)
m <- test
f <- function(x,y) sum(x == y) / NROW(x)
matches <- as.matrix(dist(m, f, ...
0
votes
1answer
36 views
R Retrieve column name under condition in a matrix
I have a matrix with 0 or 1 values. When a line has only one "1", I want to get in return the column name in which is the "1" value and in any other cases get "0". For the example below:
test ...
-1
votes
1answer
51 views
R Show P-value results of lm as matrix
I have a data frame containing multiple socio-economic factors with the correspondent obersvations. I want to run an lm-Analysis on all of them and then form a new matrix(or data frame) which contains ...
0
votes
1answer
47 views
How to select rows based on their column value in R
the dataset is something like this:
daily.sample
day1 day2 day3 day4 day5 day6 day7 day8 day9 day10 day11 day12 day13 day14
132304 919 420 1021 331 1012 606 256 58 302 87 859 ...
0
votes
1answer
36 views
how to refer to multiple matrices in a loop
I have 12 matrices pV1...pV12. I need to change their colnames according to names of TF2Gene which is a list. So I have to repeat this process 12 times. How do I refer these matrices in a loop so that ...
1
vote
1answer
25 views
Treatment randomization
I have a matrix of 8 rows and 12 columns, and randomly distributed 10 different treatments with 9 replicates and a final treatment only with 6 replicates in the matrix. The code might be redundant, ...
5
votes
3answers
55 views
How do I remove matrices from a list that are duplicates within floating-point error?
This question is similar to questions that have been asked regarding floating-point error in other languages (for example here), however I haven't found a satisfactory solution.
I'm working on a ...
1
vote
1answer
35 views
Melt and Recast into a new dataframe in r
I just downloaded a lot of temperature data from one of our dataloggers. The dataframe gives me mean hourly observations of temperature for 1691 hours for 87 temperature sensors (so there is a lot of ...
8
votes
4answers
117 views
R table by matrix row
For a matrix (as.matrix), how can I generate a table where rows are equal to rows of the matrix?
>table(matrix)
and
>hist(matrix)
show the cumulative sum for each unique data value in ...
0
votes
3answers
25 views
How to add different values to matrix columns
To add different values to every row in a matrix is very simple by using the recycling:
m <- matrix(1:12, ncol=4)
print(m + c(100, 200, 300))
But how can I add a different value to every column? ...
0
votes
1answer
63 views
Creating a loop through multiple datasets
For the sibling data I am trying to create a loop that will run sib1 through sib10. I want to loop forward over each column & if the value is 174 I want to sum the columns and set it equal to 1. ...
1
vote
1answer
40 views
How to transform an R Matrix into an xts/zoo object?
aI'm having a problem transforming an xts derived R Matrix back into an xts object after running the returns function. Here's what I've got...
> class(xtsData)
[1] "xts" "zoo"
> ...
1
vote
1answer
31 views
Combining matrix in data frame through aggregate
I'm trying to compute quantiles by factor and print out the resulting aggregate to latex format using xtable. Unfortunately, I'm getting some wonky behavior. And a clean solution would be appreciated.
...
-4
votes
1answer
48 views
Extracting positive elements from a matrix in R
I have got this 6x6 matrix,
1 1 2 1 2 2
1 3 1 1 2 1
0 5 1 1 0 3
0 5 0 2 1 3
4 1 3 3 2 3
2 3 3 0 2 3
and I ...
2
votes
3answers
36 views
Adding maximum values from different levels to a new column in a data.frame
I have a following R problem. I made an experiment and observed some cars speed. I have a table with cars (where number 1 means for example Porche, 2 Volvo and so on) and their speeds. One car could ...
0
votes
1answer
45 views
Importing mutiple matrices to one array in R [duplicate]
I have one folder and in that folder there are 24 individual folders. Each of those individual folders contains multiple files that each contain a matrix. How can I loop through the individual ...
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
...
0
votes
0answers
30 views
Matrix algebra on a rolling subset of data in R
I am a novice to R and have the following problem:
Data Input:
I have a CSV with two columns like this:
1,10
2,20
3,30
4,40
5,50
...
N, M
Problem:
a) Read in the CSV
b) Convert to a matrix
c) ...
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,] ...
2
votes
1answer
75 views
Applying a function between specific pairs of columns in a matrix in R
I am generating a matrix using the lsa package in R. After the matrix is created, I would like to calculate the cosine similarity between specific pairs of documents (columns) in the matrix.
...
-1
votes
2answers
70 views
Fastest way to apply a filter to a matrix in R [closed]
If I have a 2d matrix and I would like to apply some sort of filter (e.g. dilate, erode, sobel edge detection) given some filter matrix:
f = matrix(c(0,1,0,
1,1,1,
0,1,0), ...
0
votes
2answers
58 views
How do I impose condition on Diagonal elements of a Matrix in R Language
I am working in R language. I want to impose condition that if any of the upper diagonal element of a matrix is greater than 0.5 then it prints it in output.
I am using the following code but it ...
2
votes
1answer
42 views
the [] operator in matrices R
So I know that if you have:
m = matrix(1:9, 3,3)
z = as.matrix(expand.grid(1:3, 1:3))
and you do
m[z]
# you get back 1 2 3 4 5 6 7 8 9
But if you do
m[] = m[z]
# You get back a matrix..
...
0
votes
1answer
31 views
combine two named vectors with missing values in matrix
I have a named vector x:
x <- seq(10, 80, 10)
names(x) <- month.abb[1:8]
...and a named vector y:
y <- seq(10, 110, 10)
names(y) <- month.abb[2:12]
I need to combine x and y in a ...
-1
votes
1answer
35 views
I have a matrix and want to check if off diagonal elements >0.5 then print a message that the i, j th element is greater than 0.5 [closed]
I am working in R language. I want to impose condition that if any of the upper diagonal element of a matrix is greater than 0.5 then it prints it in output.
X is a matrix of variables
mat(X) is ...
1
vote
1answer
67 views
R, adding an attribute to each row of a Matrix
In R, I have a matrix: matClust4 which holds all vectors that are in cluster 4 after executing the kmeans algorithm.
matClust4 has dimensions 27 X 31 and has the rownames attribute set for each ...
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 ...


