{R语言学习日记}Day2 概览

作者: William李梓峰 | 来源:发表于2017-07-15 21:52 被阅读131次

大家好,我是William李梓峰,欢迎阅读我的 R 语言学习日记。

官方文档链接:
https://www.tutorialspoint.com/r/r_overview.htm

R is a programming language and software environment for statistical analysis, graphics representation and reporting. R was created by Ross Ihaka and Robert Gentleman at the University of Auckland, New Zealand, and is currently developed by the R Development Core Team.
R 语言是一门编程语言,它能够处理数理统计建模分析,数据可视化和数据报表。R 语言由新西兰的奥克兰大学的两名老师 Ross Ihaka 和 Robert Gentleman 所创建,现在由 R 语言核心开发小组负责维护更新。

The core of R is an interpreted computer language which allows branching and looping as well as modular programming using functions. R allows integration with the procedures written in the C, C++, .Net, Python or FORTRAN languages for efficiency.
R 语言的核心概念就是作为一门解释型编程语言,提供程序逻辑编写能力以及程序函数式模块化的能力。R 语言能够集成 C、C++、.Net、Python 或 FORTRAN 这些编程语言。

R is freely available under the GNU General Public License, and pre-compiled binary versions are provided for various operating systems like Linux, Windows and Mac.
R 语言是完全开源免费的,使用 GNU 通用公共开源协议,提供了预编译的二进制版本,用于 Linux,Windows 以及 Mac。

R is free software distributed under a GNU-style copy left, and an official part of the GNU project called GNU S.
R 语言在 GNU 开源协议指导下免费分发传播,而这协议在 GNU 项目中就称为 GNU S。

Evolution of R

R 的历史进程

R was initially written by Ross Ihaka and Robert Gentleman at the Department of Statistics of the University of Auckland in Auckland, New Zealand. R made its first appearance in 1993.
R 语言,于1993年新西兰的奥克兰大学统计学部,由 Ross Ihaka 和 Robert Gentleman 共同发明。

A large group of individuals has contributed to R by sending code and bug reports.
一个大型工业级组织通过提交代码和漏洞报告来贡献 R 语言。

Since mid-1997 there has been a core group (the "R Core Team") who can modify the R source code archive.
自从1997年年中以来,就有一个称为 R 语言核心团队的组织负责维护 R 语言的源代码。

Features of R

R语言的特点

As stated earlier, R is a programming language and software environment for statistical analysis, graphics representation and reporting. The following are the important features of R −
正如前篇所讲的,R 语言是一门编程语言,提供统计分析,数据可视化和数据报表的功能。以下是关于 R 语言的一些重要特性 -

R is a well-developed, simple and effective programming language which includes conditionals, loops, user defined recursive functions and input and output facilities.
R 语言是一门易上手又强大的编程语言,包含逻辑条件判断,循环体,递归函数以及输入输出功能。

R has an effective data handling and storage facility,
R 语言拥有强效的数据处理以及数据存储能力。

R provides a suite of operators for calculations on arrays, lists, vectors and matrices.
R 语言提供一堆操作运算符,用于数组,列表,向量以及矩阵的运算。

R provides a large, coherent and integrated collection of tools for data analysis.
R 语言提供一整套丰富可集成的统计分析工具。

R provides graphical facilities for data analysis and display either directly at the computer or printing at the papers.
R 语言提供数据可视化工具。

As a conclusion, R is world’s most widely used statistics programming language. It's the # 1 choice of data scientists and supported by a vibrant and talented community of contributors. R is taught in universities and deployed in mission critical business applications. This tutorial will teach you R programming along with suitable examples in simple and easy steps.
总的来说,R语言是目前最广泛使用的统计编程语言。它是研究数据科学的第一选择,并由一帮杰出天才的社区贡献者维护。R 语言在大学课程中被教授于各个学生,而且还在各种商业应用中部署使用。本教程会一步一步地通过讲解那些简单容易的例子来让你循序渐进地学会 R 语言。

相关文章

  • {R语言学习日记}Day2 概览

    大家好,我是William李梓峰,欢迎阅读我的 R 语言学习日记。 官方文档链接:https://www.tuto...

  • R语言概览

    R是一个开源软件,R语言是“你问我答”的解释型语言,R的优势在于丰富的扩展包,R主要应用于统计、数据分析领域。

  • 65-R语言训练深度预测模型

    《深度学习精要(基于R语言)》学习笔记 1、概览 本文涉及以下主题:• 深度前馈神经网络入门• 常见的激活函数:整...

  • R实现Polynomial regression

    内容概览 Polynomial regression简介 R语言实现--实例 1. Polynomial regr...

  • R语言入门与实战

    课程概览 课时列表 评价 笔记( 12 ) 课时1:R语言是什么、R的优势、资源16:08 课时2:R的安装、获取...

  • day5 阿来

    继续学习R语言 R语言数据学习 数据R语言学习.png 数据输入 数据输出 总结 R语言学习的第二天,熟悉了很多操...

  • R语言-0基础学习4-实战1-常见操作

    R语言学习系列R语言-0基础学习1-数据结构R语言-0基础学习2-构建子集R语言-0基础学习3-循环排序信息处理函...

  • 预测分析研究

    预测算法用java实现 数学建模spss时间预测 Arima模型分析预测 基于R语言的上海房价预测 R学习日记——...

  • 03-Day2《一本小小的红色写作书》:学习笔记 1

    Day2:掌握文章的通用结构 一、全书框架逻辑概览: 二、Day2主要内容提炼总结 今天学习的是书中第一部分“结构...

  • 学习小组Day4笔记--行

    正式开始学习R语言了,今天笔记内容为R语言基础和ggplot2的入门学习 R语言基础 1、认识R与RStudio ...

网友评论

    本文标题:{R语言学习日记}Day2 概览

    本文链接:https://www.haomeiwen.com/subject/cipzhxtx.html