Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

33 results for “from:Ravi Kulkarni”

Shapiro-Wilk for levels of factor
Ravi Kulkarni · Feb 14, 2010 · r-help

Thanks! Exactly what I wanted. Ravi -- View this message in context: http://n4.nabble.com/Shapiro-Wilk-for-levels-of-factor-tp1555254p1555720.html Sent from the R help mailing list archive at Nabble.com.

Scope of variable?
Ravi Kulkarni · Mar 16, 2011 · r-help

Of course! Works fine now. Thanks, Martyn and Jim... Ravi -- View this message in context: http://r.789695.n4.nabble.com/Scope-of-variable-tp3381485p3381932.html Sent from the R help mailing list archive at Nabble.com.

roccomp
Ravi Kulkarni · Apr 2, 2010 · r-help

The ROCR package has methods to compute AUC and related methods. You might want to check it out. Ravi -- View this message in context: http://n4.nabble.com/roccomp-tp1748818p1748903.html Sent from the R help mailing list archive at...

Shapiro-Wilk for levels of factor
Ravi Kulkarni · Feb 14, 2010 · r-help

Hello, I have data for an ANOVA where the between-subjects factor has three levels. How do I run a test of normality (using shapiro.test) on each of the levels of the factor for the dependent variable separately without...

Coding of categorical variables for logistic regression?
Ravi Kulkarni · Mar 28, 2010 · r-help

How do I use the "extra" information that two of my predictors are ordinal? (I did not know I could do that.) Thanks, Ravi -- View this message in context: http://n4.nabble.com/Coding-of-categorical-variables-for-logistic-regression...

Difference in Levene's test between R and SPSS
Ravi Kulkarni · Feb 15, 2010 · r-help

I forgot to reply to Peter Ehler's question: I am using Levene's test in the "car" package. Ravi -- View this message in context: http://n4.nabble.com/Difference-in-Levene-s-test-between-R-and-SPSS-tp1555725p1556016.html...

Help! I turned my data into junk!
Ravi Kulkarni · Mar 8, 2010 · r-help

It's probably binary data - which implies that you can only "read" it with the application that created it. What is the filename extension? Ravi -- View this message in context: http://n4.nabble.com/Help-I-turned-my-data-into...

Type-I v/s Type-III Sum-Of-Squares in ANOVA
Ravi Kulkarni · Mar 1, 2010 · r-help

Apologies. I should have checked the archives first... I did not know that it was so widely discussed... Ravi -- View this message in context: http://n4.nabble.com/Type-I-v-s-Type-III-Sum-Of-Squares-in-ANOVA-tp1573657p1573734...

U de Theil
Ravi Kulkarni · May 9, 2010 · r-help

I do not know if this is what you want, but take a look at the "External links" at the bottom of the Wikipedia page: http://en.wikipedia.org/wiki/Theil_index Ravi -- View this message in context: http://r...

Structural equation modelling in R compared with Amos
Ravi Kulkarni · Oct 20, 2011 · r-help

Can anyone give me links to reviews/comparisons of R with Amos for SEM? I have found some but they are a little old (2009). Ravi -- View this message in context: http://r.789695.n4.nabble.com/Structural-equation-modelling...

Bug in options(digits=n)??
Ravi Kulkarni · Nov 18, 2011 · r-help

This is in version 2.10.1 > sqrt(3) [1] 1.732051 > 6/7 [1] 0.8571429 > options(digits=3) > sqrt(3) [1] 1.73 > 6/7 [1] 0.857 > sqrt(7) [1] 2.65 > 7/9 [1] 0.778...

Source code for the t-distribution
Ravi Kulkarni · Mar 9, 2010 · r-help

I have tried looking for the source code for the pt() function in https://svn.r-project.org/R/trunk/src/library/stats/ and am unable to find it there. Can someone please tell me where to find it? Thanks...

Boundary kernel for kernel density plot?
Ravi Kulkarni · Mar 31, 2010 · r-help

Hello, Is a kernel called the "boundary" kernel available for kernel density plots? In the help, I can only see the following kernels: "gaussian", "rectangular", "triangular", "epanechnikov", "biweight", "cosine" or "optcosine". The boundary kernel apparently improves the estimate in a...

Difference in Levene's test between R and SPSS
Ravi Kulkarni · Feb 15, 2010 · r-help

I think I have an answer: SPSS uses absolute deviations from the _mean_ in Levene's test. (See calculation in http://www.uvm.edu/~dhowell/gradstat/psych340/Lectures/Anova/anova2.html) R uses absolute deviations from the _median_ (R help...

Type-I v/s Type-III Sum-Of-Squares in ANOVA
Ravi Kulkarni · Mar 4, 2010 · r-help

Hello, Since I initiated this discussion some days ago, I discovered a paper that may be of interest: ANOVA for unbalanced data: Use Type II instead of Type III sums of squares by ?YVIND LANGSRUD Statistics and Computing 13: 163...

roccomp
Ravi Kulkarni · Apr 3, 2010 · r-help

Yes, there does not seem to be a method for comparing two ROC curves in ROCR. But I found a discussion in the R-archives which may be useful: http://tolstoy.newcastle.edu.au/R/help/06/03/23667.html...

Problem with GoogleFinanceSource function: Error in get...
Ravi Kulkarni · Apr 2, 2014 · r-sig-finance

Hello, I am new to using Rmetrics. When I try to use the GoogleFinanceSource function thus: x <- GoogleFinanceSource('INFY') I get an error message saying; Error in get(name, envir = asNamespace(pkg), inherits = FALSE) : object '.Source' not found I am...

reading excel into R
Ravi Kulkarni · Apr 1, 2010 · r-help

Use R Commander to do this. R Commander is a R package that offers a GUI for R. It can be downloaded like any other R package. If you use R Commander, there is a menu option where you specify...

lattice package: Changing colors in graphs
Ravi Kulkarni · Feb 24, 2010 · r-help

Giving different colors to plots of different levels of a factor can be pleasing. For a boxplot, for example, the following produces a nice plot: boxplot(len~supp*dose, data=ToothGrowth, col=c(?orange?,?gray?)) If I try to specify...

References for book "R In Action" by Kabacoff
Ravi Kulkarni · Dec 1, 2011 · r-help

I know this is not really an R question - it is a query about a recent book on R ("R In Action") by Robert Kabacoff, (Manning Publications 2011). There are many references to interesting topics in R in the book...

Can't find what you're looking for? Try searching with Google .