0
votes
0answers
24 views

Displaying factors and levels with logistic regression in R

I have a dataframe model.vars containing discretized data on which to perform logistical regression, as follows: for(i in varnames) { modelformula = paste("dep_var~ ", as.factor(i)) ...
2
votes
2answers
30 views

accessing random effects variance estimate in nlme's lme

Is there any way of obtaining the variance of a random term in a nlme package lme model? Random effects: Formula: ~t | UID Structure: General positive-definite, Log-Cholesky parametrization ...
1
vote
1answer
33 views

In R how to insert in a model a variable that is a function of a binary variable?

I would like to know how to insert a variable that is a function of a binary variable. I am sorry if this question does not sound clear, I am pretty new at R. Here is an example of what I am trying to ...
0
votes
2answers
31 views

Using tapply in a function/loop that will replace variable name for the length of the columns of the dataframe

In R, I have a dataset (which I call star) of records with about 50 appended demographics (each demographic can be called var1, var2, var3, etc). I have split the dataset in ~10% groups by using the ...
2
votes
1answer
27 views

How can I apply fisher test on this set of data (nominal variables)

I'm pretty new in statistics: fisher = function(idxToTest, idxATI){ idxDependent=c() dependent=c() p = c() for(i in c(1:length(idxToTest))) { tbl = table(data[[idxToTest[i]]], data[[idxATI]]) ...
0
votes
1answer
20 views

bin/group numeric vectors of different length

I have numeric vectors with different lengths, ranging from 300 to 500. I would like to 'normalize' them to a length of 100, i.e. for a vector of length 300 I take the mean of 3 values, for a vector ...
0
votes
1answer
44 views

Frequencies for a normal distribution

How to get frequencies that reflect a normal distribution for each integer 1...400. Values 1 and 400 would have the minimum frequency of 1, what would the frequencies be for the other values? Also, ...
0
votes
2answers
40 views

R - cut a vector

I have 503 datapoints and I want to cut away the last 250 to get the 253. I tried cut ,but these function only gives me groups back... How can I do that in R?
-1
votes
1answer
28 views

correlation test between repeated measures variables using Roy (2006) method [closed]

I'm trying to calculate the correlation coefficient between two variables with repeated measures both. I got eight different individuals and I measure their thickness three times using one device ...
0
votes
1answer
35 views

Errors with PCoA in R due to large dataset

For my workproject I have to perform a PCoA (principal coordinate analysis aka multidimensional scaling). However when using R to perform this analysis I run into a few problems. The function ...
0
votes
2answers
63 views

How can I overlay 2 normal distribution curves on the same plot?

I'm brand new to R, and I'm facing a problem without much in- class resources. I need to do something that I'm sure is very simple. Can someone point me in the right direction? This is my task: ...
1
vote
1answer
24 views

catch data that creates a table with only one non-empty row or column in R

I am doing a chisq.test on a bunch variables but it unexpectedly failed with: Error in chisq.test(var1, var2) : 'x' and 'y' must have at least 2 levels A quick examination yields that: > ...
-1
votes
1answer
54 views

How to remove multiple outliers from a data.frame in R

Hi I have 5 variables with 1000 observations. So the 5 variables contain lot of outliers like 10,11, 13, 1003, 10987, 1099 and also it contain missing values. So I want to remove multiple outliers. ...
1
vote
1answer
50 views

How can I ensure that a partition has representative observations from each level of a factor?

I wrote a small function to partition my dataset into training and testing sets. However, I am running into trouble when dealing with factor variables. In the model validation phase of my code, I ...
0
votes
0answers
39 views

Wilcox test in R for two groups in a distance matrix

I have a matrix which looks like this (its just a head of it): S1 S2 S3 S4 S5 S6 S7 Acetanaerobacterium 3 1 0 ...
0
votes
0answers
35 views

Test to indentify change in median in a time-series [migrated]

the question is trivial, but is there any statistical test (can be done in R) to show that the median is changing in a time-series?? For example, if you go to the following link, you would notice ...
0
votes
3answers
86 views

Choice of statistical test (in R) of two apparently different distributions

I have the following list of data each has 10 samples. The values indicate binding strength of a particular molecule. What I want so show is that 'x' is statistically different from 'y', 'z' and ...
0
votes
1answer
39 views

How do I incorporate dummy's in R?

I made several dummy variables in SPSS and was wondering if I could use the same ones in R? Is there any special code you need to put before the variables (like factor(...) for categorical) or can you ...
1
vote
2answers
57 views

Decile function in R - nested ifelse() statements lead to poor runtime

I wrote a function that calculates the deciles of each row in a vector. I am doing this with the intention of creating graphics to evaluate the efficacy of a predictive model. There has to be a ...
0
votes
0answers
32 views

Mantel Test in R

I am trying to run a Mantel test in R on two distances (Geographic Distances and Genetic Distancse). The data is saved in an Excel file as 2 columns; each row has the geographic distance and genetic ...
0
votes
2answers
57 views

Nested tables and calculating summary statistics with confidence intervals in R

This question is about the statistical program R. Data I have a data frame, study_data, that has 100 rows, each representing a different person, and three columns, gender, height_category, and ...
0
votes
0answers
19 views

The “formula” argument in R elrm() function did not read a specific data

There was something wrong with the argument "tryout." It kept showing me that "tryout" was not found. What could be wrong with the code? data <- data.frame(event=c(0,1), x =c(0,1), tryout <- ...
0
votes
2answers
32 views

Having weights shown as an unused argument in logistf R function

I kept getting a problem for the following code; "weights=weight" was shown as an unused argument. How should I solve the problem? x_0 <- rbinom(1,100, 0.01) x_1 <- rbinom(1,100, 0.1) x ...
1
vote
1answer
74 views

Highlight tiles with ggplot2 geom_tile() + geom_point()

I have the following plot that looks like: I'm trying to add points in another layer using according to the following code found here My data frame i'm importing looks like this: residue_id ...
0
votes
1answer
51 views

“Vectorizing” this for-loop in R? (suppressing interaction main effects in lm)

When interactions are specified in lm, R includes main effects by default, with no option to suppress them. This is usually appropriate and convenient, but there are certain instances (within ...
0
votes
1answer
29 views

How to make a new Column based on conditions

Hi I have 2 columns in my table: ROM and Treatment ROM is filled with values between -20 and 20 and Treatment has 0 or 1. I need to find a way to get all the ROM values that are in the control group ...
0
votes
0answers
26 views

How do I make R run R Commander every time it starts up?

I used to have it set up that R commander plug-in would start up automatically every time I opened the R application, but I've upgraded R and can't remember how I did it.
1
vote
1answer
43 views

R: running t-test on one column of a dataframe versus all others [duplicate]

I have a dataframe of the basic form: > head(raw.data) NAC cOF3 APir Pu Tu V2.3 mOF3 DGpf 1 6.314770 6.181188 6.708971 6.052134 6.546938 6.079848 6.640716 ...
0
votes
1answer
37 views

t-test in R between individuals columns and the rest of a given dataframe

This is in R. I need help taking a dataframe of basic format NAC cOF3 APir Pu Tu V2.3 mOF3 DGpf 1 6.314770 6.181188 6.708971 6.052134 6.546938 6.079848 6.640716 ...
2
votes
1answer
41 views

Create specified correlation between variables (by permutation) in R

I am looking for a way to create a specified correlation between 2 variables, regardless of their distribution, given that the ordening is allowed to change. The motivation has to do with Bayesian ...
2
votes
1answer
89 views

How to remove one outlier in ggplot2 facet point_plot that squash the rest of the data

I produced a faceted plot that I'm very satisfied with except for one issue. On a couple of the plots, one or two outliers completely ruin the graph. I could use y_lim function, but I'm using ...
-2
votes
0answers
181 views

Why does Mann-Whitney U-test in R generate negative p-value? [closed]

I'm running wilcox.test in R to test 1-tailed test among two samples and it gives me negative p-values like below: [1] 1.948161e-09 [1] 3.177668e-12 [1] 1.948161e-09 Anyone can give me some pointer ...
0
votes
0answers
33 views

Any way to simply convert an ARIMA model to an infinite AR representation in R?

I'm trying to recreate some test statistics that use the infinite AR representation of normal ARMA models. I found out about the function ARMAtoMA but have not been able to find the same ...
4
votes
3answers
98 views

How logical negation operator “!” works

I am not trying to solve any particular problem, but trying to learn R and understand its logical negation operator "!" documented on page ...
0
votes
1answer
67 views

Use R to calculate cohen's Kappa for a categorical rating but within a range of tolerance?

I have a series of ratings (categorical with at least 12 levels) from 2 independent raters. I would like to calculate inter-rater reliability, but allowing for a difference of one level. I.e. Level 1 ...
0
votes
1answer
107 views

Problems with grouping factor, data frame, and tapply

I am very new to R and stats in general and am having trouble getting tapply() to work. I have a data frame with 15 columns and thousands of rows. I made a bunch of logical vectors using something ...
5
votes
3answers
84 views

Product of likelihood too small - R only gives 0

I am trying to compute this posterior distribution in R. The problem is that the numerator, which is the product of a bunch of dbern(p_i, y_i) < 1, is too small. (My n is about 1500). Hence, R ...
-1
votes
0answers
51 views

statistics in R LDA for dimensionality reduction [closed]

How do I perform a Linear Discriminant Analysis (LDA) for dimensionality reduction in R? Do I have to use the coefficients of the linear discriminants? The following illustrates the output of a LDA ...
-3
votes
1answer
96 views

What's the minimum sample required for correlation analysis (linear model in R) [closed]

I'm trying to perform correlation analysis with R's linear model lm() I'm wondering what is the reasonable minimum sample for it? Is there any rule for determining that?
3
votes
0answers
48 views

How do I interact a tensor product with two different `by=var` variables?

An example: library(mgcv) N=1000 x1 = seq(1:N) x2 = log(x1) x3 = sqrt(x1) fac1 = ceiling(rnorm(N)*3) fac2 = ceiling(runif(N)*3) y = fac1*x2 + x1*x2 + x2 + x3*x2 + x2*(x1/x3)^(.8+fac2/10) + ...
0
votes
1answer
29 views

MWTP in R with significantly positive variable for Price - Unexpected Results

I am using the support.CEs package in R for a choice experiment. I am attempting to calculate Marginal Willingness To Pay (MWTP). The package seems to be relatively new, and I have reviewed the CRAN ...
-1
votes
1answer
63 views

How to write a function to generate a sequence of points in R?

This is the PDF that I am dealing with: fx = 0.3 if (0<=x<1) 0.1 if (1<=x<2) 0.25 if (2<=x<3) 0.15 if (3<=x<4) 0.2 if (4<=x<5) 0 otherwise I have to write a function ...
3
votes
1answer
44 views

Density of a Two-Piece Normal (or Split Normal) Distribution

Is there a density function for the two-piece Normal distribution: on CRAN? Thought I would check before I code one. I have checked the distribution task view. It is not listed there. I have looked ...
0
votes
0answers
37 views

Error while loading custom package?

Operating system: Ubuntu 12.04 R: 2.15.3 I am trying to load a custom R package that someone sent me. I have installed all the dependencies using > intall.packages() and I have installed the ...
1
vote
1answer
69 views

R: relative frequency in r by factor

I would like to get a table of top 10 absolute and relative frequencies for a variable across other factor variable. I have a dataframe with 3 columns: 1 column is a factor variable, 2nd is other ...
3
votes
2answers
88 views

Working between Java and R

I am trying to pass a double array into R, sum its values, and return it to Java. Here is what I am trying to do in Java: import org.rosuda.JRI.REXP; import org.rosuda.JRI.Rengine; // Start R ...
1
vote
1answer
33 views

How to execute the version of R which installed in a local folder?

I unpacked the new version of R package and inside a folder I gave commands: ./configure make Now I want to run it, if I give command: $ R Then it runs the older version. and I have no privilege ...
0
votes
2answers
115 views

Call R from JAVA to get Chi-squared statistic and p-value

I have two 4*4 matrices in JAVA, where one matrix holds observed counts and the other expected counts. I need an automated way to calculate the p-value from the chi-square statistic between these ...
2
votes
1answer
39 views

Saving output of t.test to dataframe when using mapply in R

I have two dataframes of the sort a b c 1 2 3 2 3 3 1 2 3 with the same column names. I'm using mapply(t.test, df1, df2) to output the results of a t.text comparing the ...
1
vote
1answer
90 views

Two data series overlayed on the same bar chart/histogram

I'm using ggplot2 and I need to display two sets of data on the same histogram and need to distinguish between them. At the moment, I'm just setting the colour of each series to be 50% opacity so that ...

1 2 3 4 5 16