全部版块 我的主页
论坛 数据科学与人工智能 数据分析与数据科学 R语言论坛
3531 9
2013-07-13
视频地址
http://www.youtube.com/playlist?list=PLOU2XLYxmsIK9qQfztXeybpHvru-TrqAP

Series of tutorials for developers in R

R 1.1 - Initial Setup and Navigation-iffR3fWv4xw.zip
大小:(14.07 MB)

 马上下载

本附件包括:

  • R 1.1 - Initial Setup and Navigation-iffR3fWv4xw.mp4

Strategies that will make beginning R users more efficient: writing code using a "script" and navigating through directories within R.

R 1.2 - Calculations and Variables-S-o-sdlzhkE.zip
大小:(9.97 MB)

 马上下载

本附件包括:

  • R 1.2 - Calculations and Variables-S-o-sdlzhkE.mp4


Get acquainted with performing basic computations in R, creating R objects (sometimes called "variables"), and seeing and running earlier commands that were run in the console.


R 1.3 - Create and Work With Vectors-YhQOV27pQfg.zip
大小:(18.54 MB)

 马上下载

本附件包括:

  • R 1.3 - Create and Work With Vectors-YhQOV27pQfg.mp4


Learn how to create a vector in R using the c() function and the colon-notation (e.g. 1:5), find the length of a vector using the length() function, and subset vectors with bracket-notation and the head() and tail() functions.


R 1.4 - Character and Boolean Vectors-GKu5tw_bIpA.zip
大小:(10.32 MB)

 马上下载

本附件包括:

  • R 1.4 - Character and Boolean Vectors-GKu5tw_bIpA.mp4


So far we've seen objects that use numbers, but R is also built to handle more types of objects. Here we explore vectors that contain strings or Boolean values (TRUE / FALSE).


R 1.5 - Vector Arithmetic-u5hroyx0J4o.zip
大小:(17.92 MB)

 马上下载

本附件包括:

  • R 1.5 - Vector Arithmetic-u5hroyx0J4o.mp4


This video demystifies the different ways R performs vector arithmetic (e.g. addition and multiplication), covering topics including element-wise arithmetic, vector recycling, and how some functions are automatically applied across the ele…


R 1.6 - Building and Subsetting Matrices-cR-hEUs1rRw.zip
大小:(24.04 MB)

 马上下载

本附件包括:

  • R 1.6 - Building and Subsetting Matrices-cR-hEUs1rRw.mp4


Learn how to create a matrix with dimensions of your choosing, how recycle a vector when creating a matrix, and how to query specific characteristics of the vector using functions such as dim(), head(), and tail(). Details and potential …


R 1.7 - Section 1 Review and Help Files-mtu5_IYhgpg.zip
大小:(19.61 MB)

 马上下载

本附件包括:

  • R 1.7 - Section 1 Review and Help Files-mtu5_IYhgpg.mp4


A quick review of the topics covered in the Section 1 videos: vectors, matrices, subsetting, and a few standard functions. Also learn how to access help files in R.


R 2.1 - Loading Data and Working With Data Frames-qK1ElUMkhq0.zip
大小:(30.69 MB)

 马上下载

本附件包括:

  • R 2.1 - Loading Data and Working With Data Frames-qK1ElUMkhq0.mp4


Get a refresher on navigating directories on your computer in R, and learn to load a CSV (comma-separated values) data set in the form of a "data frame" using the read.csv() function, which is a special type of data matrix. This vide…


R 2.2 - Loading Data, Object Summaries, and Dates-cx_3zWo4sUs.zip
大小:(28.66 MB)

 马上下载

本附件包括:

  • R 2.2 - Loading Data, Object Summaries, and Dates-cx_3zWo4sUs.mp4


Learn how to load data in the form of a tab-delimited text file using the read.delim(), how to get a high-level overview of an R object using the str() and summary() functions, and get a crash-course into working with dates in R with an exa…


R 2.3 - if() Statements, Logical Operators, and the which() Function-eVEx_pBEkRI.zip
大小:(43.12 MB)

 马上下载

本附件包括:

  • R 2.3 - if() Statements, Logical Operators, and the which() Function-eVEx_pBEkRI.mp4


if-else statements are a key component to any programming language. This video introduces how to effectively use these statements in R and also clarifies some nuances of logical operators in R. Two related functions are also intro…


R 2.4 - for() Loops and Handling Missing Observations-djI-yfk-DZM.zip
大小:(31.49 MB)

 马上下载

本附件包括:

  • R 2.4 - for() Loops and Handling Missing Observations-djI-yfk-DZM.mp4


This video discusses for() loops, which are a structure that can be used to execute a set of code repeatedly. Also covered in this video are the min(), max(), and append() functions, as well as how to identify and omit missing value…


R 2.5 - Lists-UffunYeERV0.zip
大小:(19.12 MB)

 马上下载

本附件包括:

  • R 2.5 - Lists-UffunYeERV0.mp4


Learn how to create and use lists in R, which are dynamic, flexible R objects that can hold and organize other R objects.


R 3.1 - Managing the Workspace and Variable Casting-8oc3mIa0TCw.zip
大小:(20.15 MB)

 马上下载

本附件包括:

  • R 3.1 - Managing the Workspace and Variable Casting-8oc3mIa0TCw.mp4


View all the objects in the workspace using ls(), remove objects using rm(), cast a variable as a different type using an as.[type]() function, and use lists or data frames to organize data or results.

R 3.2 - The apply() Family of Functions-WuCVs3bW-ZY.zip
大小:(44.46 MB)

 马上下载

本附件包括:

  • R 3.2 - The apply() Family of Functions-WuCVs3bW-ZY.mp4


When data are organized in a matrix or data frame, the apply() function can be used to calculate summaries (or apply a more complex function) across either the rows or columns of the data object. Or if summaries for each group (level) …

R 3.3 - Access or Create Columns in Data Frames, or Simplify a Data Frame using .zip
大小:(16.44 MB)

 马上下载

本附件包括:

  • R 3.3 - Access or Create Columns in Data Frames, or Simplify a Data Frame using aggregate()-pZ6Bnxg9E8w.mp4


The with() function makes it easy to access many variables (columns) in a data frame for one-off calculations, the within() function can be used to create new columns that are merged with the original data frame, and aggregate() is…


R 4.1 - Basic Structure of a Function-Z1wB1rHAYzQ.zip
大小:(12.16 MB)

 马上下载

本附件包括:

  • R 4.1 - Basic Structure of a Function-Z1wB1rHAYzQ.mp4


This video introduces the basic structure of a function, covering the declaration of the function, using an argument, and returning a result.


R 4.2 - Returning a List and Providing Default Arguments-DzIy6U-N6ac.zip
大小:(15.08 MB)

 马上下载

本附件包括:

  • R 4.2 - Returning a List and Providing Default Arguments-DzIy6U-N6ac.mp4


Become more proficient in writing functions by learning the standard way to return more complex results from functions using a list, and learn how to specify a default value for an argument.


R 4.3 - Add a Warning or Stop the Function Execution-29TdKkUmcA4.zip
大小:(12.21 MB)

 马上下载

本附件包括:

  • R 4.3 - Add a Warning or Stop the Function Execution-29TdKkUmcA4.mp4


The most helpful functions return clear warnings and errors when something is wrong. This video introduces the warning() and stop() functions, which can be used within a function to report a warning to the user or stop the functio…


R 4.4 - Passing Additional Arguments Using an Ellipsis-O3Bf2hM_gNc.zip
大小:(27.55 MB)

 马上下载

本附件包括:

  • R 4.4 - Passing Additional Arguments Using an Ellipsis-O3Bf2hM_gNc.mp4


Sometimes it is useful to be able to pass any extra arguments to another function. For example, if a new plotting function is created that makes use of the function called plot(), it would be useful to be able to be able to specify add…


R 4.5 - Make a Returned Result Invisible and Build Recursive Functions-CHmmHfJ8hCA.zip
大小:(13.21 MB)

 马上下载

本附件包括:

  • R 4.5 - Make a Returned Result Invisible and Build Recursive Functions-CHmmHfJ8hCA.mp4


Use the invisible() function in place of return() in a function to prevent the output from printing to the user's screen but still allow the result to be stored into an R object. Additionally, when building a recursive function, use the Recall() fu…


R 4.6 - Custom Functions With apply()-H06_Ic_kDvI.zip
大小:(17.46 MB)

 马上下载

本附件包括:

  • R 4.6 - Custom Functions With apply()-H06_Ic_kDvI.mp4


In the last section of videos, the apply() function was introduced. A prebuilt function is often used in this function, but it is also common to write a new function within apply() or to apply a custom function.



二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

全部回复
2013-7-13 00:37:51
谢谢辛苦分享
二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

2013-7-13 21:44:57
顶一个
二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

2013-7-16 10:49:42
二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

2013-7-16 11:36:14
下好了。谢谢分享哦。
二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

2013-7-16 12:35:35
好视频,收下了
二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

点击查看更多内容…
相关推荐
栏目导航
热门文章
推荐文章

说点什么

分享

扫码加好友,拉您进群
各岗位、行业、专业交流群