python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to get a correlation coefficient for a comparison between continuous and categorical variable
I have this dataset. I am trying to find the correlation between a continuous variable expr with a categorical variable WHO_Grade:
> dput(tmp)
structure(list(expr = c(3.72491159808923, 7.831640593...

Komal Rathi
Votes: 0
Answers: 1
How to delist of array from np.split() for function argument
Suppose I have data as in array
X = [ x1 x2 ... xn ]
when I use np.split(X,n) will separate in to this
ARR = [ [arr1] ,[arr2] ,.... [arrn] ]
Now I would get those group of array list into function ...
Krit Pattamadit
Votes: 0
Answers: 1
Running multiple Kruskal Wallis test with lapply taking long. Easier solution?
I have a data frame 90 observations and 124306 variables named KWR all numeric data. I want to run a Kruskal Wallis analysis within every column between groups. I added a vector with every different g...
Jonas De Leeuw
Votes: 0
Answers: 2
Getting pairwise effect sizes
I am trying to get pairwise comparisons of effect sizes. I can do this with coh_d, however, it gives me repeat comparisons. For example, in the following code, setosa vs. versicolor is the same as ver...
hugh_man
Votes: 0
Answers: 1