Displaying 20 results from an estimated 200 matches similar to: "cronbach's alpha"
2007 Aug 21
2
standardized cronbach's alpha?
Hi list members
Any easy way to get standardized cronbach's alpha for a scale, as in SPSS?
Thanks
Steve Powell
proMENTE social research
research | evaluation | training & consulting
Kranj?evi?eva 35, 71000 Sarajevo
mobile: +387 61 215 997 | office: +387 33 556 865 | fax: +387 33 556 866
Checked by AVG Free Edition.
17:44
2007 Jan 24
3
Cronbach's alpha
Dear Listers:
I used cronbach{psy} to evaluate the internal consistency and some set
of variables gave me alpha=-1.1003, while other, alpha=-0.2;
alpha=0.89; and so on. I am interested in knowing how to interpret
1. negative value
2. negative value less than -1.
I also want to re-mention my previous question about how to evaluate
the consistency of a set of variables and about the total
2008 Feb 20
1
a questtion about Cronbach's alpha more than 1
Dear All,
I am a novice in R and am working on my thesis for
master's in Epidemiology & Biostatistics. While
calculating Cronbach's alpha for the SF-36
questionnaire, I got all 8 of them more than 1. Is it
possible to get alpha more than 1. If yes, please help
me understand it. I read about the negative alpha
value on your web postings. It does not answer my
question though.
Thank you.
2007 Sep 03
1
Ask alpha cronbach and Hoyt method
Dear all, i need help about comparing 2 alpha cronbach. How to derive W statistic. Are alpha cronbach and Hoyt's method using ANOVA identical? Thank you for your help.
Regards
---------------------------------
Luggage? GPS? Comic books?
[[alternative HTML version deleted]]
2001 Mar 26
1
Item Analysis and Cronbach's Alpha (Code Attached)
A short function I wrote for the purpose of evaluating scales made up of a
number of questionnaire items. It provides Cronbach's Alpha, both
unstandardized and based on standardized items. It also provides item
statistics which include item-total correlations (corrected) and
item-removed alpha. Thought some of you might find it useful. I would also
appreciate any programming tips or
2000 Jul 17
3
Code for Coefficent (Cronbach's) Alpha
Hi all,
I am trying to teach myself to use and program R (How else do you do it?
lol) Anyway, I wrote a piece of code to compute coefficent alpha for a
scale. As I am neither a statistician nor a programmer, I wanted people's
feedback. The code appears to work (Win 95 with R 1.0.1) and I have
verified my result with SPSS and it was correct (much to my astonishment!).
Nonetheless, I am
2017 Feb 15
4
multiprecision add/sub
I suggest that LLVM needs intrinsics for add/sub with carry, e.g.
declare {T, i1} @llvm.addc.T(T %a, T %b, i1 c)
The current multiprecision clang intrinsics example:
void foo(unsigned *x, unsigned *y, unsigned *z)
{ unsigned carryin = 0;
unsigned carryout;
z[0] = __builtin_addc(x[0], y[0], carryin, &carryout);
carryin = carryout;
z[1] = __builtin_addc(x[1], y[1],
2007 May 01
7
logrank test
how do l programme the logrank test. l am trying to compare 2 survival curves
---------------------------------
[[alternative HTML version deleted]]
2013 Sep 27
2
RV: cronbach
¿existe algún método en el cual no sea necesario hacer este trabajo y que
aparezcan los nombres de las preguntas?
label.cronbach <- label.var(p01, "¿Le agrada el programa que se le ha
mostrado? ")
label.cronbach <- label.var(p02, "¿Cree que ayuda en el aprendizaje?")
label.cronbach <- label.var(p03, "¿Propicia el trabajo en el equipo?")
label.cronbach
2013 Sep 27
1
RV: cronbach
rm(list = ls()) #borra todo lo anterior en memoria
setwd("G:/Public/Documents/R/EPICALC/") #como se llama la data desde su path
sanda<-read.csv("sandavid2.csv",header=TRUE, sep=",", dec=".")
use(sanda)
attach (sanda)
library (MASS)
label.cronbach <- label.var(p01, "¿Consume mucho pan? ") ####¿Hay alguna manera de nombrarlos
2014 Oct 03
2
[LLVMdev] Weird problems with cos (was Re: [PATCH v3 2/3] R600: Add carry and borrow instructions. Use them to implement UADDO/USUBO)
Hi Tom, Matt,
I'm running into strange issues with the cos test (piglit
generated_tests/cl/builtin/math/builtin-float-cos-1.0.generated.c)
I have been seeing random failures (incorrect results) for some time and
tried to investigate. the weird part is that the failures are not 100%
reproducible, sometimes the tests pass, or partly pass
(it's usually float8 and float16 subtests that
2007 Sep 19
2
recommended package/docs for analyzing multiple choice tests
Hi,
What package would you recommend for analyzing the
validity/reliability of multiple choice tests. Doing things such as
classical test analysis, factor analysis, item response theory.
I've used psychometric (item.exam), MiscPsycho (alpha.Summary), and ltm
(rcor.test). MiscPsycho reported the numbers most similar to what I get
in SPSS: corrected point biserial correlations,
2017 Nov 11
5
Primer for working with survey data in R
I am taking a behavioral stats graduate class and the instructor is using
SPSS. I'm trying to follow along in R.
Recently in class we started working with scales and survey data, computing
Cronbach's Alpha, reversing values for reverse coded items, etc.
Also, SPSS has some built in functionality for entering the meta-data for
your survey, e.g. the possible values for items, the text of
2007 May 07
2
computing logrank statistic/test
hie how do you compute the logrank test using R
what commands do you use my data looks something like just an example
treatmentgrp strata censoringTime survivalTime censoring act.surv.time
[1,] 2 2 42.89005 1847.3358 1 42.89005
[2,] 1 1 74.40379 440.3467 1 74.40379
[3,] 2 2
2007 May 16
2
creating different strata
hie
l would like to create about ten strata l have tried using
sample(c(1,2),1,replace=TRUE) but all l get is a vector of 1 and 2 if i change it to sample(c(1,10),1,replace=TRUE) it gives me a vector of 1 and 10 how do l go about it
---------------------------------
[[alternative HTML version deleted]]
2005 Aug 12
3
Dating Objects
Hi
I know this subject has been mentioned before but from the mail archives
I'm under the impression that this is not possible ?
I'm trying to carryout the equivalent of ls -l in R to give some
date/time label to each of my objects
If the case is that there is no equivalent, is it possible to list all
objects in an environment that share a common component ?
So that the common
2017 Mar 07
2
multiprecision add/sub
> On Feb 21, 2017, at 9:54 PM, Nemanja Ivanovic via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>
> I believe that providing additional intrinsics that would directly produce the ISD::ADDC/ISD::SUBC nodes would provide the additional advantage of being able to directly produce these nodes for code that doesn't have anything to do with multiprecision addition/subtraction. I am
2007 Oct 29
3
using survfit
hie
when i use plot.survfit to plot more than one graph why I only see the last graph how do i see the other graphs.for example
n=20
n1=n/2
n2=n/4
a11=4;a12=4 ;a21=4 ;a22=4
t1<-array(1,c(n1))
t2<-array(2,c(n1))
treatgrp=matrix(c(t1,t2))
2017 Nov 11
1
Primer for working with survey data in R
Dear Kevin,
In addition to the advice you've received, take a look at the survey package. It's not quite what you're asking for, but in fact it's probably more useful, in that it provides correct statistical inference for data collected in complex surveys. The package is described in an article, T. Lumley (2004), Analysis of complex survey samples, Journal of Statistical Software
2006 Jun 03
2
Problem with pointsizes in Graphics
Hello,
I have a problem with the sizes of points on the screen (Code tested for
some R versions on a Solaris system and also for Linux). Maybe it is
best to start with an example:
If I do a very simple plot using the character '.' for the points, e.g.,
n<-100; plot(0:n,0:n,pch='.',cex=1+(0:n)/20)
then not all for all the points the horizontal and vertical dimensions
are the