A Diversion on Binding Values to Symbol

When R tries to bind a value to a symbol,it searches through a series of environments to find the appropriate value.When you are working on the command line and need to retrieve the value of an Robject, the order is roughly

1. Search the global environment for asymbol name matching the one requested.

2. Search the namespaces of each of thepackages on the search list

The search list can be found by using thesearch function.

>search() [1] ".GlobalEnv" "package:stats""package:graphics" [4] "package:grDevices""package:utils" "package:datasets" [7]"package:methods" "Autoloads" "package:base"

Binding Values to Symbol

The global environment or the user’sworkspace is always the first element of the search list and

the base package is always the last.

The order of the packages on the searchlist matters!

User’s can configure which packages getloaded on startup so you cannot assume that there will

be a set list of packages available.

When a user loads a package with librarythe namespace of that package gets put in position

2 of the search list (by default) andeverything else gets shifted down the list.

Note that R has separate namespaces forfunctions and non-functions so it’s possible to have an

object named c and a function named c.

Scoping Rules

The scoping rules for R are the mainfeature that make it different from the original S language. The scoping rulesdetermine how a value is associated with a free variable in a function

R uses lexical scoping or static scoping. Acommon alternative is dynamic scoping.

Related to the scoping rules is how R usesthe search list to bind a value to a symbol

Lexical scoping turns out to beparticularly useful for simplifying statistical computations

Lexical Scoping

Consider the following function.

f<- function(x, y) {

x^2 + y / z

}

This function has 2 formal arguments x andy. In the body of the function there is another symbol z. In this case z iscalled a free variable. The scoping rules of a language determine how valuesare assigned to free variables. Free variables are not formal arguments and arenot local variables (assigned insided the function body).

Lexical scoping in R means that:

the values of free variables are searchedfor in the environment in which the function was defined.

What is an environment?

An environment is a collection of (symbol,value) pairs, i.e. x is a symbol and 3.14 might be its

value.

Every environment has a parent environment;it is possible for an environment to have multiple

“children”

the only environment without a parent isthe empty environment

A function + an environment = a closure orfunction closure

Searching for the value for a freevariable:

If the value of a symbol is not found inthe environment in which a function was defined, then the

search is continued in the parentenvironment.

The search continues down the sequence ofparent environments until we hit the top-level

environment; this usually the globalenvironment (workspace) or the namespace of a package.

After the top-level environment, the searchcontinues down the search list until we hit the empty

environment. If a value for a given symbolcannot be found once the empty environment is

arrived at, then an error is thrown.

Why does all this matter?

Typically, a function is defined in theglobal environment, so that the values of free variables are

just found in the user’s workspac

This behavior is logical for most peopleand is usually the “right thing” to do

However, in R you can have functionsdefined inside other functions

-Languages like C don’t let you do this

Now things get interesting — In this casethe environment in which a function is defined is the

body of another function!

make.power<- function(n) {

pow <- function(x) {

x^n

}

pow

}

This function returns another function asits value

>cube <- make.power(3)

>square <- make.power(2)

>cube(3)

[1]27

>square(3)

[1] 9

Exploring a Function Closure

What’s in a function’s environment?

>ls(environment(cube))

[1]"n" "pow"

>get("n", environment(cube))

[1] 3

>ls(environment(square))

[1]"n" "pow"

>get("n", environment(square))

[1] 2

Lexical vs. Dynamic Scoping

y<- 10

f<- function(x) {

y <- 2

y^2 + g(x)

}

g<- function(x) {

x*y

}

With lexical scoping the value of y in thefunction g is looked up in the environment in which the

function was defined, in this case theglobal environment, so the value of y is 10.

With dynamic scoping, the value of y islooked up in the environment from which the function was

called (sometimes referred to as thecalling environment).

- InR the calling environment

So the value of y would be 2.

When a function is defined in the globalenvironment and is subsequently called from the global environment, then thedefining environment and the calling environment are the same. This cansometimes give the appearance of dynamic scoping.

>g <- function(x) {

+ a<- 3

+x+a+y

+ }

>g(2)

Errorin g(2) : object "y" not found

>y <- 3

>g(2)

[1] 8

Consequences of Lexical Scoping

In R, all objects must be stored in memory

All functions must carry a pointer to theirrespective defining environments, which could be

anywhere

In S-PLUS, free variables are always lookedup in the global workspace, so everything can be

stored on the disk because the “definingenvironment” of all functions is the same.

R Programming week2 Functions and Scoping Rules的更多相关文章

  1. R Programming week2 Control Structures

    Control Structures Control structures in R allow you to control the flow of execution of the program ...

  2. Coursera系列-R Programming第二周

    博客总目录,记录学习R与数据分析的一切:http://www.cnblogs.com/weibaar/p/4507801.html  --- 好久没发博客 且容我大吼一句 终于做完这周R Progra ...

  3. Coursera系列-R Programming第三周-词法作用域

    完成R Programming第三周 这周作业有点绕,更多地是通过一个缓存逆矩阵的案例,向我们示范[词法作用域 Lexical Scopping]的功效.但是作业里给出的函数有点绕口,花费了我们蛮多心 ...

  4. 让reddit/r/programming炸锅的一个帖子,还是挺有意思的

    这是原帖 http://www.reddit.com/r/programming/comments/358tnp/five_programming_problems_every_software_en ...

  5. 解决proto文件转换时提示“Note that enum values use C++ scoping rules, meaning that enum values are siblings of their type, not children of it. ”

    前言: 想将.proto文件转换成.pb文件时一直报错,一开始以为是文件编码格式的问题,后来将文件改成windows下的utf-8格式后,又出现了新的报错(见下图).百度了很久,才找到解决方法. &q ...

  6. R Programming week 3-Loop functions

    Looping on the Command Line Writing for, while loops is useful when programming but not particularly ...

  7. [R] [Johns Hopkins] R Programming 作業 Week 2 - Air Pollution

    Introduction For this first programming assignment you will write three functions that are meant to ...

  8. Standard C++ Programming: Virtual Functions and Inlining

    原文链接:http://www.drdobbs.com/cpp/standard-c-programming-virtual-functions/184403747 By Josée Lajoie a ...

  9. R Programming week 3-Debugging

    Something’s Wrong! Indications that something’s not right message: A generic notification/diagnostic ...

随机推荐

  1. 滑动窗体的最大值(STL的应用+剑指offer)

    滑动窗体的最大值 參与人数:767时间限制:1秒空间限制:32768K 通过比例:21.61% 最佳记录:0 ms|8552K(来自 ) 题目描写叙述 给定一个数组和滑动窗体的大小.找出全部滑动窗体里 ...

  2. Silverlight实用示例 - DataGrid行详细信息的绑定DataGrid.RowDetailsTemplate

    Silverlight实用示例 - DataGrid行详细信息的绑定DataGrid.RowDetailsTemplate 2012-12-28 21:04 来源:博客园 作者:chengxingli ...

  3. 关于spring MVC中获取客户端的IP地址

    1. 引入HttpServletRequest @Autowired private HttpServletRequest request; 2. 获取IP地址 private static Stri ...

  4. asp.net mvc 学习资料

    ASP.NET MVC 的 WebGrid 的 6 个重要技巧 http://www.oschina.net/translate/webgrid-in-asp-net-mvc-important-ti ...

  5. JS Promise API

    一.描述 我们知道JavaScript语言的执行环境是“单线程”,所谓单线程,就是一次只能够执行一个任务,如果有多个任务的话就要排队,前面一个任务完成后才可以继续下一个任务. 这种“单线程”的好处就是 ...

  6. javascript使用正则表达式,从字符串提取内容,多数组解析

    JavaScript有两种方式创建一个正则表达式: 第一种方式是直接通过/正则表达式/写出来,第二种方式是通过new RegExp('正则表达式')创建一个RegExp对象. 如: var re1 = ...

  7. A+B Problem——经典中的经典

    A+B Problem,这道题,吸收了天地的精华,是当之无愧的经典中的经典中的经典.自古以来OIer都会经过它的历练(这不是白说吗?),下面就有我herobrine来讲讲这道题的各种做法. 好吧,同志 ...

  8. 找规律 UVALive 6506 Padovan Sequence

    题目传送门 /* 找规律:看看前10项就能看出规律,打个表就行了.被lld坑了一次:( */ #include <cstdio> #include <algorithm> #i ...

  9. 题解报告:hdu 1114 Piggy-Bank(完全背包恰好装满)

    Problem Description Before ACM can do anything, a budget must be prepared and the necessary financia ...

  10. php中除法取整的方法(round,ceil,floor)

    PHP中遇到需要将除法所得结果取整的情况时,就需要用到以下方法: 1. round:四舍五入 round() 函数对浮点数进行四舍五入. 语法:round(x, prec) 参数 描述 x 可选.规定 ...