R tutorial - The True Basics of R

  Рет қаралды 479,580

DataCamp

DataCamp

Күн бұрын

Пікірлер: 71
@vaniella_xy
@vaniella_xy Жыл бұрын
Side note: The cheat sheet that's offered by data camp is the best I've seen, it's what brought me here. I appreciate the short videos within the playlist as well! 10/10
@DataCamp
@DataCamp Жыл бұрын
Thank you! Here is a link to our R basics cheat sheet: www.datacamp.com/cheat-sheet/getting-started-r
@mohanrajk9485
@mohanrajk9485 4 жыл бұрын
It is indeed the true Basics if R .... Highly appreciated
@DataCamp
@DataCamp Жыл бұрын
Glad you found this useful!
@nectaria3
@nectaria3 6 жыл бұрын
You are the best online teacher I've ever seen!
@switchel_schnitzel4154
@switchel_schnitzel4154 6 жыл бұрын
This video is rated R
@goinggoinggone535
@goinggoinggone535 3 жыл бұрын
Take this thumbs-up and go...
@hayatbourassi4467
@hayatbourassi4467 3 жыл бұрын
Merci pour vos merveilleuses demandes, c'est très clair
@TianaLuo
@TianaLuo 3 жыл бұрын
oui c’est vrai
@theirishdataguy2361
@theirishdataguy2361 7 жыл бұрын
Great video! love the introduction to R and how it's used. Really clear explanation of the components in RStudio too!
@adnaninusah
@adnaninusah 4 жыл бұрын
brief and simple. love it
@hayatbourassi4467
@hayatbourassi4467 3 жыл бұрын
Thanks for your wonderful inquiries, it is very clear
@gagadaddy8713
@gagadaddy8713 6 жыл бұрын
Very good website for R beginners
@manjithateshara9968
@manjithateshara9968 6 жыл бұрын
great R tutorial ,keep it up
@robhuntington8504
@robhuntington8504 4 жыл бұрын
this looks like it complements the intro to R datacamp course that I'm doing (which has no videos just exercises). Was looking for something that went into a bit more detail about R and what's going on in background
@simoputra2463
@simoputra2463 4 жыл бұрын
O5 5 5 5
@fawadqasimi3817
@fawadqasimi3817 8 жыл бұрын
best videos thanks for uploading
@mayurgobade9519
@mayurgobade9519 7 жыл бұрын
detail explanation kepp it up bro
@Zenas521
@Zenas521 7 жыл бұрын
vary well done
@rajatsrivastav5871
@rajatsrivastav5871 6 жыл бұрын
too awesome thanks for helping beginners
@ehsharingmoments4606
@ehsharingmoments4606 4 жыл бұрын
similar eLearning videos in Lithan Singapore blended training... my preference is still interactive focus group and classroom training.
@javariabibi5197
@javariabibi5197 6 жыл бұрын
Please make some tutorials on database management server as well
@khursheedstatistics5971
@khursheedstatistics5971 6 жыл бұрын
thnks a lot sir
@navjotsingh2251
@navjotsingh2251 7 жыл бұрын
This tutorials are really helpful to learning R thank you so much, and your good looking too so that’s a bonus lol ;)
@navazsyed8455
@navazsyed8455 6 жыл бұрын
Thanks bro
@arundathinath9464
@arundathinath9464 6 жыл бұрын
Expecting much more dept R programming with solving projects and free classes.
@jamaafulani5712
@jamaafulani5712 7 жыл бұрын
Thanks!
@andy9319
@andy9319 5 жыл бұрын
what are some of the applications of R? Who learns and why?
@ismth
@ismth 4 жыл бұрын
I know data journalist are one group who use this language
@chimpionboy
@chimpionboy 6 жыл бұрын
Nice.
@sherv.h
@sherv.h 2 жыл бұрын
R and RStudio (R Script) need to be downlonaded separately.
@Shishir06
@Shishir06 6 ай бұрын
How to make an R script?
@DrJohnnyJ
@DrJohnnyJ 3 жыл бұрын
Wouldn't it be nice to install R before starting?
@mowp
@mowp 3 жыл бұрын
No it's not nice. Start without installing 🤓
@Ghada-g8y
@Ghada-g8y Жыл бұрын
May Allah bless you sir could I study by mobil app
@julianaannor
@julianaannor Жыл бұрын
great
@vtvtify
@vtvtify 8 жыл бұрын
your videos amazing
@nousheenislam8727
@nousheenislam8727 5 жыл бұрын
Where is "submit" option?
@sankalpkotewar
@sankalpkotewar 7 жыл бұрын
Why do we get [1] every time with the output? What is its significance?
@Reivivus
@Reivivus 7 жыл бұрын
That's a good question. It occurs because you are given "1" list of items from your function call. If you calculate 1 + 2 in R, you get the output: [1] 3. If you ask R to print the integers 1 through 10 as ... print(1:10), you get the output: [1] 1 2 3 4 5 6 7 8 9 10 ... because your function call to print, prints out "1" list of integers 1 through 10. This doesn't happen if you ask for a lot of information like, I want to know the mean, median, and quartiles of the integers 1 through 10: > x = 1:10 > summary(x) Min. 1st Qu. Median Mean 3rd Qu. Max. 1.00 3.25 5.50 5.50 7.75 10.00 You've asked for a lot of information so you don't get the [1] in your output. Really it's not that important. No actually, my answer isn't very correct if you ask to print the integers 1 to 100, then you get the following output: > print(1:100) [1] 1 2 3 4 5 6 7 8 9 10 11 12 13 [14] 14 15 16 17 18 19 20 21 22 23 24 25 26 [27] 27 28 29 30 31 32 33 34 35 36 37 38 39 [40] 40 41 42 43 44 45 46 47 48 49 50 51 52 [53] 53 54 55 56 57 58 59 60 61 62 63 64 65 [66] 66 67 68 69 70 71 72 73 74 75 76 77 78 [79] 79 80 81 82 83 84 85 86 87 88 89 90 91 [92] 92 93 94 95 96 97 98 99 100 It's just a way of counting items, same thing happens if you ask R to print the letters A to Z, where "A" is the first letter in the alphabet, and "Z" is the 26th letter: > print(LETTERS[1:26]) [1] "A" "B" "C" "D" "E" "F" "G" "H" "I" "J" "K" "L" "M" [14] "N" "O" "P" "Q" "R" "S" "T" "U" "V" "W" "X" "Y" "Z" A more advanced example. Count the numbers not their values: > print(-100:0) [1] -100 -99 -98 -97 -96 -95 -94 -93 -92 -91 [11] -90 -89 -88 -87 -86 -85 -84 -83 -82 -81 [21] -80 -79 -78 -77 -76 -75 -74 -73 -72 -71 [31] -70 -69 -68 -67 -66 -65 -64 -63 -62 -61 [41] -60 -59 -58 -57 -56 -55 -54 -53 -52 -51 [51] -50 -49 -48 -47 -46 -45 -44 -43 -42 -41 [61] -40 -39 -38 -37 -36 -35 -34 -33 -32 -31 [71] -30 -29 -28 -27 -26 -25 -24 -23 -22 -21 [81] -20 -19 -18 -17 -16 -15 -14 -13 -12 -11 [91] -10 -9 -8 -7 -6 -5 -4 -3 -2 -1 [101] 0
@sankalpkotewar
@sankalpkotewar 7 жыл бұрын
Woah, thanks. :)
@BDagys
@BDagys 7 жыл бұрын
I believe it is the size of the vector containing the data
@AzmaryZannatAurin
@AzmaryZannatAurin 5 жыл бұрын
I didn't understand R script thing. How to use it?
@BachchaStayle
@BachchaStayle 4 жыл бұрын
#mistakesright
@jaishreesingh564
@jaishreesingh564 5 жыл бұрын
sir l want statistics classes in R.
@135k
@135k 6 жыл бұрын
you need to tie your hands down
@POPDATA
@POPDATA 5 жыл бұрын
help me goooddddd
@arundathinath9464
@arundathinath9464 6 жыл бұрын
Make an Mobile application, each chapter it will help a lot .
@jaishreesingh564
@jaishreesingh564 5 жыл бұрын
please sir provide me statistics data analysis in R
@gyungchaehan8045
@gyungchaehan8045 5 жыл бұрын
Jaishree Singh nah
@adobotravels
@adobotravels 3 жыл бұрын
Define not a good idea to watch this at 1.5x speed when you know nothing about r
@StatisticalAnalyticSignal
@StatisticalAnalyticSignal 4 жыл бұрын
Stop jumping and shaking your hands. Its distracting.
@rico1648
@rico1648 4 жыл бұрын
I expected a "why" video not a "how"
@vasanthkumar3685
@vasanthkumar3685 6 жыл бұрын
The video advertisement says data camp is free No, it's not Total fake They will ask premium membership
@jakobtheking1
@jakobtheking1 6 жыл бұрын
why do you speak english like an indian though
@lolylolay
@lolylolay 6 жыл бұрын
Maybe he is Indian
@111battlefront
@111battlefront 6 жыл бұрын
Thats a spanish accent
@jakobtheking1
@jakobtheking1 6 жыл бұрын
did you just assume his nationality?
@111battlefront
@111battlefront 6 жыл бұрын
jakobtheking1 it’s a Spanish accent
@neuropsych2
@neuropsych2 6 жыл бұрын
It's a Portuguese accent and why the fuck does it matter?
@johirislam8174
@johirislam8174 3 жыл бұрын
I got a problem to install 1package-i am using R version 4.05.First org.Hs.eg.db this package i want to install.I did it manually by downloading the packages and also from Biocmanager. But when i install it and call for library(org.Hs.eg.db) ,in colsol the bellow command was written > library(org.Hs.eg.db) Error: package or namespace load failed for ‘org.Hs.eg.db’: .onLoad failed in loadNamespace() for 'org.Hs.eg.db', details: call: l$contains error: $ operator is invalid for atomic vectors In addition: Warning message: call dbDisconnect() when finished working with a connection
R tutorial: The basic data types in R
3:53
DataCamp
Рет қаралды 214 М.
RStudio Tutorial for Beginners: Introduction to R Studio and Basics of R
49:45
Dynamic Data Script
Рет қаралды 730 М.
The evil clown plays a prank on the angel
00:39
超人夫妇
Рет қаралды 53 МЛН
This is how I ACTUALLY analyze data using Excel
24:05
Mo Chen
Рет қаралды 411 М.
How I'd learn ML in 2025 (if I could start over)
16:24
Boris Meinardus
Рет қаралды 227 М.
Learn R in 39 minutes
38:56
Equitable Equations
Рет қаралды 818 М.
R programming for ABSOLUTE beginners
14:13
R Programming 101
Рет қаралды 497 М.
The Rust Survival Guide
12:34
Let's Get Rusty
Рет қаралды 181 М.
Getting started with R and RStudio
14:38
How To R
Рет қаралды 685 М.
I Tried 50 Data Analyst Courses. Here Are Top 5
8:41
Stefanovic
Рет қаралды 341 М.