{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# 函数操作\n", "\n", "本文介绍 R 中的控制语句(条件 if/switch 与循环 for/while),抛出警告与异常(stop()/warning()/message()),以及如何自编写函数、如何把编写函数放入启动环境中。\n", "\n", "## 条件语句\n", "\n", "### if 语句\n", "\n", "R 中的 if 语句有三种形式:\n", "\n", "- If (cond) state \n", "- If (cond) yes-state else no-state\n", "- Ifelse (cond, yes-state, no-state)" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[1] TRUE\n" ] } ], "source": [ "# if 语句\n", "if (2 > 1) {\n", " a <- TRUE\n", "}\n", "print(a)" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[1] TRUE\n" ] } ], "source": [ "# if-else 语句\n", "if (2 != 1) {\n", " a <- TRUE\n", "} else {\n", " a <- False\n", "}\n", "print(a)" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "text/html": [ "TRUE" ], "text/latex": [ "TRUE" ], "text/markdown": [ "TRUE" ], "text/plain": [ "[1] TRUE" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# 三元选择器:ifelse()\n", "ifelse(2 != 1, a <- TRUE, a <- False)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### switch 语句" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[1] \"A\"\n", "[1] \"B\"\n", "[1] \"C\"\n" ] } ], "source": [ "dt <- c(\"a\", \"b\", \"c\")\n", "for (i in dt) {\n", " print(switch(i, a = \"A\", b = \"B\", c = \"C\"))\n", "}" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 循环语句\n", "\n", "之前在 [“数据管理”一文](ManageData.ipynb#函数式编程) 中介绍过函数式编程 apply()。如果可能,请尽量使用函数式编程,而不是使用循环语句。\n", "\n", "### for 语句\n", "\n", "在 switch() 中已经展示了 for 语句的用法。\n", "\n", "### while 语句" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[1] 0\n", "[1] 1\n", "[1] 2\n" ] } ], "source": [ "i <- 0\n", "while (i < 3) {\n", " print(i)\n", " i <- i + 1\n", "}" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 自编写函数\n", "\n", "R 中的函数声明与其他语言并没有什么不同:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
X | Y | SUM |
---|---|---|
1 | 4 | 5 |
2 | 5 | 7 |
3 | 6 | 9 |