楼主: sinoyster
3095 9

[程序分享] youtube上的一个Google Developer Live 的 R教程,转给墙内的同学 [推广有奖]

  • 0关注
  • 0粉丝

高中生

42%

还不是VIP/贵宾

-

威望
0
论坛币
117 个
通用积分
0
学术水平
2 点
热心指数
3 点
信用等级
2 点
经验
414 点
帖子
40
精华
0
在线时间
18 小时
注册时间
2013-6-4
最后登录
2024-1-12

相似文件 换一批

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

求职就业群
赵安豆老师微信:zhaoandou666

经管之家联合CDA

送您一个全额奖学金名额~ !

感谢您参与论坛问题回答

经管之家送您两个论坛币!

+2 论坛币
视频地址
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.



二维码

扫码加我 拉你入群

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

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

关键词:developer Develop YouTube Google live youtube

已有 4 人评分经验 论坛币 学术水平 热心指数 信用等级 收起 理由
weapoul + 1 + 1 + 1 已下载
Tato酱 + 1 + 1 + 1 精彩帖子
ltx5151 + 60 + 60 根据规定进行奖励
qoiqpwqr + 40 + 1 鼓励积极发帖讨论

总评分: 经验 + 60  论坛币 + 100  学术水平 + 2  热心指数 + 3  信用等级 + 2   查看全部评分

本帖被以下文库推荐

沙发
icever 发表于 2013-7-13 00:37:51 |只看作者 |坛友微信交流群
谢谢辛苦分享

使用道具

藤椅
ye01 发表于 2013-7-13 21:44:57 |只看作者 |坛友微信交流群
顶一个

使用道具

板凳
wyfhdl 发表于 2013-7-16 10:49:42 |只看作者 |坛友微信交流群
犯我华者 虽远必诛

使用道具

报纸
swisssl 发表于 2013-7-16 11:36:14 |只看作者 |坛友微信交流群
下好了。谢谢分享哦。

使用道具

地板
weapoul 发表于 2013-7-16 12:35:35 |只看作者 |坛友微信交流群
好视频,收下了

使用道具

7
足球是宝 发表于 2013-7-16 20:31:13 |只看作者 |坛友微信交流群
准备收藏了

使用道具

8
solomen313 发表于 2013-7-18 09:48:40 |只看作者 |坛友微信交流群
感谢楼主的馈赠~

使用道具

9
nandymok 发表于 2013-7-18 15:17:35 |只看作者 |坛友微信交流群
感谢感谢

使用道具

10
zhushengtao 发表于 2013-8-2 09:00:42 |只看作者 |坛友微信交流群
谢谢分享

使用道具

您需要登录后才可以回帖 登录 | 我要注册

本版微信群
加好友,备注cda
拉您进交流群

京ICP备16021002-2号 京B2-20170662号 京公网安备 11010802022788号 论坛法律顾问:王进律师 知识产权保护声明   免责及隐私声明

GMT+8, 2024-5-1 00:28