Thank you for the free tutorial. Most tutorials online arent free. Im also a student at HUB. Sending much love and power to your channel Prof. :)
@DannyArendsАй бұрын
Thanks, and yes I'm a big fan of free and open education and software. I can code all day and write one tool, but if I teach others, we'll have the many tools we need much faster.
@moanamina1268 Жыл бұрын
Im a field scientist (marine biologist) and thank you for providing these materials for free! I am starting this course now to do statistics and graphs.
@DannyArends Жыл бұрын
You're welcome, enjoy learning R, graphs, and statistics
@bolatitosarumi7286 ай бұрын
This is a great resource!! Thank you for making this resource available, Dr Danny!
@DannyArends6 ай бұрын
My pleasure!
@shreyasaha412529 күн бұрын
Thank you so much for the demonstrations.
@DannyArends29 күн бұрын
You're very welcome, hope you're enjoying the lectures
@successfulvictorypublisher6090 Жыл бұрын
Par Excellence! Tqsvm Dr. Danny Arends!
@kingsleyunegbu1222 Жыл бұрын
Thanks so much, Dr Danny! this has really been of great help. Super grateful!
@sagarikamishra144 Жыл бұрын
Thanks so much for the lecture. Truly needed and helpful.
@DannyArends Жыл бұрын
Glad it was helpful!
@S1m0nTG Жыл бұрын
This guy knows.
@n.m.h.a.11012 жыл бұрын
excellent thank you so much
@Svykle18 күн бұрын
I really like your notepad approach about reproducible. I do think that this forces you to be more reporducable. I do like the r studio project structure with “here” package . This way ANYONE with the root acesss folder (that has the data, that constantly updates, ) can run the script. I make sure to design scripts everything is reproducible . But the here package does require .git and it’s hard to do with notepad +. Not sure though.
@DannyArends18 күн бұрын
Yeah, I don't mind people using Rstudio when they know what they're doing there is no issue. However for beginners imho it's better to have a clear separation between code, interpreter, and data. I've used many different editors in the past, but for windows I always come back to Notepad++
@elibainbridge132611 ай бұрын
does R have anything equivalent to Python 'Virtual environments" where I could load packages so as not to clutter the base install of R on my Windows system?
@DannyArends11 ай бұрын
R doesn't need it, since packages aren't loaded until you decide to do so using the library() function. In theory you could set up different named sessions with combinations of packages loaded, but normally a script will just start with loading packages x,y,z. Different R versions have their own package installation folders, that don't interfere with each other.
@mitch61515 ай бұрын
Thank You So Much!
@DannyArends5 ай бұрын
Glad it helped!
@jacqueto2 жыл бұрын
thank you so much
@DannyArends2 жыл бұрын
You're welcome, thanks for taking the time to leave a comment. Enjoy the rest of the lectures.
@Maanfarms30211 ай бұрын
Hello! Dear can you make an elaborative video on genralized linear model and generalized linear mixed model with data analysi on both and how interpret and please if with genetics background
@DannyArends11 ай бұрын
I will put this on my TODO list, I haven't really had much time to make videos recently but I will try and get around to it at some point
@magali8398 Жыл бұрын
But why is R ugly
@DannyArends Жыл бұрын
How do you mean ugly ? It's a really nice and very powerful language, which allows you to code in many different ways (functional, object oriented). The only ugly "thing" about R is the Rgui interface which is kind of outdated, compared to more modern REPL interfaces.