R - Simple linear regression
6:31
6 жыл бұрын
R - Logistic regression (part 2)
8:00
R - Logistic regression (part 1)
12:58
R - Two-Way ANOVA (part 2)
5:07
6 жыл бұрын
R - Two-Way ANOVA (part 1)
11:54
6 жыл бұрын
R - Pearson's correlation test
8:49
6 жыл бұрын
R - Kruskall-Wallis test
8:28
6 жыл бұрын
R - One-way ANOVA
9:51
6 жыл бұрын
R - Sign test (matched pairs)
4:55
7 жыл бұрын
R - Paired (two samples) t-test
5:30
R - One sample Wilcoxon test
3:18
7 жыл бұрын
R - One sample t-test
4:10
7 жыл бұрын
Пікірлер
@cosworthpower5147
@cosworthpower5147 3 ай бұрын
Hi, my dependent variable is the number of questions answered in a privacy sensitive context (0-19). Can I also use the ANOVA for this count data ?
@ynattirb3
@ynattirb3 6 ай бұрын
Thank you so much for this video!!!
@bkarim7349
@bkarim7349 11 ай бұрын
Thank you
@mebratuify
@mebratuify Жыл бұрын
I tried to run your codes from my R-studio, but the following errors were faced as a problem. Error: unexpected symbol in "model1=1m." ### Testing Normal distribution for each group, no major outlines Treat1 <-subset(Diversity_Index_Table,Treat="CON") Treat2 <-subset(Diversity_Index_Table,Treat="ANT") Treat1 <-subset(Diversity_Index_Table,Treat=="D800") qqnorm(Treat1$ace) ########Homogeneity of variances bartlett.test(ace~Treat,data = Diversity_Index_Table) ##One way ANOVA model1=1m(ace~Treat,data=Diversity_Index_Table) Especially is there any package install for...to run "model1.1m"?
@mebratuify
@mebratuify Жыл бұрын
Thank you so much. Let me ask you one question. 1. Here you have only one dependent variable, but how can we do if we have more than 2 or 3 dependent variables? 2. How can we test using Duncan or Tukey test in addition to LSD if there is significant variations? 3. How can we give subscription letters to those significant treatments or groups? and draw a box plot by providing subscription letters (like a, ab, c....) in a grouped box plot and adding SEM for each treatment? Thanks again.
@hibitrithibitrit7264
@hibitrithibitrit7264 Жыл бұрын
You did a fantastic job explaining this. Thanks for helping with my r-stat homework! I have proven that cougars found in boreal forests have a different environmental features in comparison to cougars found in prairie habitat. Yes, it is very obvious which makes it excellent practice data.
@ukadelic
@ukadelic Жыл бұрын
In case anyone else is trying the updated script but still getting the same error as me for > datascores <- as.data.frame(scores(NMDS)) #extract the site scores Error in (function (..., row.names = NULL, check.rows = FALSE, check.names = TRUE, : arguments imply differing number of rows: 30, 9 use "datascores = as.data.frame(scores(NMDS)$sites)" instead and it should work :) this is because of an update in the vegan package
@saedhriel8970
@saedhriel8970 Жыл бұрын
Thank you for this video. Your explanation was really useful!
@chitrarajagopal8434
@chitrarajagopal8434 Жыл бұрын
Sir, Thank you so much for this well-explained tutorial on NMDS. I tried to do it with my data and successfully did up to NMDS calculation. when I ran the code datascores <- as.data.frame(scores(NMDS)) it gives me an error given below, Error in (function (..., row.names = NULL, check.rows = FALSE, check.names = TRUE, : arguments imply differing number of rows: 233, 29 Could you please help me to sort out this problem?
@sofiavivas2050
@sofiavivas2050 Жыл бұрын
Hello! i have the same problem..were you able to solve it?
@barry6129
@barry6129 9 ай бұрын
I also have this problem.
@pipe919
@pipe919 5 күн бұрын
Hello! i have the same problem..were you able to solve it?
@pranathichintaluri2876
@pranathichintaluri2876 Жыл бұрын
Hi. I need help. Which Anova test do I use for a dataset of 3 species of beetles? It would be great if you helped me out a little. Thank you.
@arnolddayday4565
@arnolddayday4565 Жыл бұрын
you keep saying that its okay that the data are not normally distributed, but the majority on internet say that the data HAS to be. Im so freakin confused, I wouldve have used the sign test but alot dont recommended it either so what is left/which test can be applied for a one sample ordinal data?
@rafaelbiondo2893
@rafaelbiondo2893 Жыл бұрын
when I'm gonna apply qqnorm and qqline for normal distribution analysis R returns this words: Error in (1 - h) * qs[i] : non-numeric argument to binary operator.
@evaweber8195
@evaweber8195 Жыл бұрын
Thanks man that really helped!!
@brazilfootball
@brazilfootball 2 жыл бұрын
Can you provide a peer reviewed publication that says this test requires homogeneity of variance, please?
@dennismunetsi614
@dennismunetsi614 Жыл бұрын
I thought a Kruskal Wallis was for when homogeneity of variances was not equal. If they are equal, why not a one-way anova?
@mhxprs
@mhxprs 2 жыл бұрын
Great stuff
@kasunpathirana9410
@kasunpathirana9410 2 жыл бұрын
So understandable
@AG_UofT
@AG_UofT 2 жыл бұрын
VERY HELPFUL
@meenachhantyal38
@meenachhantyal38 2 жыл бұрын
Explained the best!!!! Thank you!!!
@overcup
@overcup 2 жыл бұрын
One thing I don't follow - how is the value of 18 arrived at? Is it a nice integer chosen somewhat arbitrarily for teaching purposes? Or is the use of an integer biologically or statistically useful in a way that this video does not cover? Thanks y'all.
@marlonedy55
@marlonedy55 2 жыл бұрын
I can use Euclidean distance instead of Bray Curtis... I told you this because I was trying to do with an abundance base but at the time of running NMDS I was not able to do it. (mnds <- metaMDS(mnds_1, distance = "bray", k = 2) I got error unlike (mnds <- metaMDS(mnds_1, distance = "euc", k = 2) you can change it to Bray Curtis...
@yelenasofiapajaroesquivia3634
@yelenasofiapajaroesquivia3634 2 жыл бұрын
This was exactly what I was needing. Thank you so much!
@marybethweihbrecht7949
@marybethweihbrecht7949 2 жыл бұрын
Hello, I am following along but am getting the error - in if (autotransform && xam > 50) { : missing value where TRUE/FALSE needed. I have no NAs or blank cells in my dataset. Can anyone help me with this?
@fede8327
@fede8327 2 жыл бұрын
How to choose the number of permutations if n=24 ?
@japhetd.anunciado1398
@japhetd.anunciado1398 2 жыл бұрын
Easy to follow. Thanks
@yuktitaneja2179
@yuktitaneja2179 2 жыл бұрын
The plots/samples with 0 species, shall they be part of the matrix?
@japhetd.anunciado1398
@japhetd.anunciado1398 2 жыл бұрын
I have watched many videos but yours is very simplified and easy to understand. Keep making tutorials.
@meriembousseba4934
@meriembousseba4934 2 жыл бұрын
Thank you very much for this video, it's really interesting. Can I have your email?
@magnolia1652
@magnolia1652 2 жыл бұрын
This was super helpful! Thank you so much!
@JibHyourinmaru
@JibHyourinmaru 2 жыл бұрын
I got the visual using my own data. thanks! will you also do for other multivariate analysis like PCA, CA, PCO etc?
@mynameisjack8427
@mynameisjack8427 2 жыл бұрын
thank you!! was having huge trouble on windows, this helped a lot
@dsreyal5987
@dsreyal5987 2 жыл бұрын
Very nice and clearly explained
@mdataulgonirabbani6433
@mdataulgonirabbani6433 2 жыл бұрын
Would you please explain (with example) type l, type-II and type=III anova
@sangmtr
@sangmtr 2 жыл бұрын
How do you report it in APA style¿
@diegosimijacas4466
@diegosimijacas4466 3 жыл бұрын
Thanks for your instructions. May you help me with adding name of centroids in the new version of your code... Once more, so much Thanks...
@nikaeloliveira2093
@nikaeloliveira2093 3 жыл бұрын
Why the R have two calls foi dun test ? dunnTest and dunn.test, and this two calls give me different results
@hilarytakawira1690
@hilarytakawira1690 3 жыл бұрын
Where is the link to access the codes and data
@x7331x
@x7331x 3 жыл бұрын
Great video, and great channel in general! Congratulations! One question though: how can we calculate the ES for this test? Everything I search shows how to do it using parametric tests. Thank you in advance!
@ellaromanspedersen600
@ellaromanspedersen600 3 жыл бұрын
Such a great video thank-you!! do you know what i'd do to change the points to three colours instead of two?
@backyardbiology5894
@backyardbiology5894 3 жыл бұрын
This is absolutely amazing! You have clarified a problem that I have been struggling to understand for months. I was so close to scrapping this analysis from my thesis. You are a hero!
@mirensummers7633
@mirensummers7633 3 жыл бұрын
how would you plot the data if the explanatory variable is discrete?
@deprofundis3293
@deprofundis3293 3 жыл бұрын
Hi, thanks for the video! I was hoping to use ANOSIM and SIMPER but have trouble finding any tutorials. Is there any reason why you chose adonis instead? I tried adonis2 once on my data, and it was absolutely terrible, while anosim was significant (but I'm not sure if I ran either of them correctly. I suspect that I didn't meet the assumptions for the permanova). But I also am having trouble figuring out how to interpret the ANOSIM results. :(
@izatfatima2481
@izatfatima2481 3 жыл бұрын
You have only two parameters "Forest-size & Highest-tree" in your data and this code (cor.test(Forest_size,Highest_tree,method="pearson", data=datacorrelation) can analyze only two. What should we do if we have more then two parameters in our data?
@Jonpaulim
@Jonpaulim 3 жыл бұрын
Hi Great Video I have subscribed. Do you mind if I ask a question please
@yuhangsun8977
@yuhangsun8977 3 жыл бұрын
Thank you!! Help me a lot ! Anticipate more video about PCA or CCA interpretation
@mozimshafi6505
@mozimshafi6505 3 жыл бұрын
My p value in bartlett test come <0.05 what to do next ?
@marcoventura9451
@marcoventura9451 3 жыл бұрын
As for the error we take using cld function: 1) install package multcomp: install.packages("multcomp") 2) load the library multcomp: library("multcomp") 3) change the syntax of the cld function: cld(posthoc[[1]], alpha=.05, Letters=letters). Hope it works for you.
@quoctantrinh4655
@quoctantrinh4655 3 жыл бұрын
hi bro, can you explain the roll of "[[1]]" ? i don't know what does it means. thank you so much
@quoctantrinh4655
@quoctantrinh4655 3 жыл бұрын
i'm sorry but it did't work, could you tell me another solution? thank you so much
@YacineChenene
@YacineChenene 3 жыл бұрын
Thank a lot it worked
@marcoventura9451
@marcoventura9451 3 жыл бұрын
The viedo is very good, it crealry explain a important statistical method. I am novice to R and I would say that a lesson that takes 3 or more package to be installed tells us that probably R is not for everyone: every package has its logic, its syntax, and so on, for example when a version change sometimes the syntax is non loger valid, that is probably the case with the error we take in using cld function.
@maryoluwaroye2368
@maryoluwaroye2368 3 жыл бұрын
Thank you very much...Very helpful
@DesireeCortezThomas
@DesireeCortezThomas 3 жыл бұрын
Thank you VERY much
@TimSter15
@TimSter15 3 жыл бұрын
Thanks. Very useful set of lessons you run here! Liked and subbed