Displaying 10 results from an estimated 10 matches for "beyazta".
Did you mean:
beyaztas
2010 Dec 22
5
regression
Hi dear all,
suppose that s is a statistic code;
i have a matrix (x) which has 7 columns (1=x1,2=x23=x3,4=x4,5=x5,6=x6
and7=y)
and has 20 rows. i want to do linear reggression like
reg<-lm(x[,7]~1+x[,1]+x[,2]+.......+x[,6])
but i want to do delete i th row for nrows times and create regression model
like above and compute each models' "s" statistics and list them. but i
could
2011 Mar 17
4
A question about list
Hi dear all,
It may be a simple question, i have a list output with different number of
elements as following;
[[1]]
[1] 0.86801402 -0.82974691 0.39746666 -0.98566707 -4.96576856 -1.32056754
[7] -5.54093319 -0.07600462 -1.34457280 -1.04080125 1.62843297 -0.20473912
[13] 0.30659907 2.66908117 2.53791837 0.53788013 -0.57463077 0.27708874
[19] -2.94233200 1.54565643 -6.83694100
2010 Dec 24
3
selection of outputs from the function
Hi Dear All,
This is a function which contains Covariance Ratio and Likelihood Distance
values (CVRi, LDi). i want to compute the all row's values, that is run this
function for nrow(X) times. The X and Y matrices are;
2011 Apr 09
1
Robust Statistics for Outlier Detection
Hi Dear All,
Can someone give me a suggestion about which robust statistics are most
appropriate for outlier detection in linear models, and is available with R
?
Thanks for any idea.
--
View this message in context: http://r.789695.n4.nabble.com/Robust-Statistics-for-Outlier-Detection-tp3438493p3438493.html
Sent from the R help mailing list archive at Nabble.com.
2010 Nov 16
2
Counting
Hi dear all,
i have a data (data.frame) which contain y and x coloumn(i.e.
y x
1 0.58545723 0.15113102
2 0.02769361 -0.02172165
3 1.00927527 -1.80072610
4 0.56504053 -1.12236685
5 0.58332337 -1.24263981
6 -1.70257274 0.46238255
7 -0.88501561 0.89484429
8 1.14466282 0.34193875
9 0.58827457 0.15923694
10 -0.79532232 -1.44193770 )
i changed
2010 Nov 25
2
delete-d jackknife
Hi dear all,
Can aynone help me about delete-d jackknife
usually normal jackknife code for my data is:
n <- nrow(data)
y <- data$y
z <- data$z
theta.hat <- mean(y) / mean(z)
print (theta.hat)
theta.jack <- numeric(n)
for (i in 1:n)
theta.jack[i] <- mean(y[-i]) / mean(z[-i])
bias <- (n - 1) * (mean(theta.jack) - theta.hat)
print(bias)
but how i can apply delete-d jackknife
2011 Jan 17
1
Problem about for loop
Hi everyones, my function like;
e <- rnorm(n=50, mean=0, sd=sqrt(0.5625))
x0 <- c(rep(1,50))
x1 <- rnorm(n=50,mean=2,sd=1)
x2 <- rnorm(n=50,mean=2,sd=1)
x3 <- rnorm(n=50,mean=2,sd=1)
x4 <- rnorm(n=50,mean=2,sd=1)
y <- 1+ 2*x1+4*x2+3*x3+2*x4+e
x2[1] = 10 #influential observarion
y[1] = 10 #influential observarion
data.x <- matrix(c(x0,x1,x2,x3,x4),ncol=5)
data.y
2011 Mar 20
2
Why unique(sample) decreases the performance ?
Hi,
I' am interested in differences between sample's result when samples consist
of full elements and consist of only distinct elements. When sample consist
of full elements it take about 120 sec., but when consist of only distinct
elements it take about 4.5 or 5 times more sec. I expected that opposite of
this result, because unique(sample) has less elements than full sample. Code
as
2011 Jan 17
2
How to still processing despite bug errors?
...Hugo Mildenberger)
> 46. a remove question (Erin Hodgess)
> 47. Re: a remove question (David Winsemius)
> 48. Re: a remove question (Joshua Wiley)
> 49. Re: a remove question (David Winsemius)
> 50. Re: a remove question (Hugo Mildenberger)
> 51. Computing and Finding (ufuk beyaztas)
> 52. WORK AREA TO SAVE (Barbara.Rogo@uniroma1.it)
> 53. Re: WORK AREA TO SAVE (Duncan Murdoch)
> 54. Re: a remove question (Pete Brecknock)
> 55. Re: Memory issues (Chris Howden)
> 56. Re: how to calculate the consistency of different clusterings
> (Michael Bedward)
&...
2012 Mar 20
2
glm.fit: fitted probabilities numerically 0 or 1 occurred?
Hi all,
I am doing bootstrap with logistic regression by using glm function, and I
get the errors;
glm.fit: fitted probabilities numerically 0 or 1 occurred and
glm.fit: algorithm did not converge
I have read some things about this issue in the mailing list. I can guess
what was the problem. My data contains one or may be two outliers. Does the
error occur due to these extreme values or