r语言 运算符_R语言运算符

r语言 运算符

R语言中的运算符 (Operators in R Language)

Generally speaking, an operator is a symbol that gives proper commands to the compiler regarding a specific action to be executed. The operators are used for carrying out the mathematical or logical calculations or also sometimes manipulations are also done using these operators. R language is normally considered as the rich language with several built-in operators to make a programmer more comfortable while coding the program. Moving further let us find what all are the inbuilt operators that are offered by the R language to its users.

一般来说,运算符是一个符号,它向编译器提供有关要执行的特定操作的适当命令。 运算符用于执行数学或逻辑计算,或者有时也使用这些运算符进行操作。 R语言通常被认为是具有多种内置运算符的丰富语言,可以使程序员在编写程序时更加舒适。 进一步讲,我们可以找到R语言为其用户提供的所有内置运算符。

Concerning other programming languages like C, C++, Java, etc, here also we find such similar operators that help the coders while coding their program. The commonly used operators are as follows:

关于其他编程语言(例如C,C ++,Java等),在这里我们也找到了类似的运算符,可在编码程序时帮助编码人员。 常用的运算符如下:

  1. Arithmetic operators

    算术运算符

  2. Relational Operators

    关系运算符

  3. Logical Operators

    逻辑运算符

  4. Assignment operators

    赋值运算符

  5. Miscellaneous operators

    杂项运营商

1)算术运算符 (1) Arithmetic Operators)

The operators like +, -, *, /, %%, %/%, ^ fall under the category of the arithmetic operators. The main usage of each operator is explained in details in the following text,

+,-,*,/,%%,%/%,^之类的运算符属于算术运算符的类别。 下文详细说明了每个运算符的主要用法,

Plus Operator (+): This operator helps in adding the two vectors.

加号运算符(+) :此运算符有助于将两个向量相加。

Example:

例:

v <- c( 2,5.5,6)
t <- c(8, 3, 4)
print(v+t)

Output

输出量

[1] 10.0  8.5 10.0

Minus Operator (-): This particular operator subtracts the second vector from the first one.

减号(-) :此特定运算符从第一个向量中减去第二个向量。

Example:

例:

v <- c( 2,5.5,6)
t <- c(8, 3, 4)
print(v-t)

Output

输出量

[1] -6.0  2.5  2.0

Multiply Operator (*): It multiplies both vectors.

乘运算符(*) :将两个向量相乘。

Example:

例:

v <- c( 2,5.5,6)
t <- c(8, 3, 4)
print(v*t)

Output

输出量

[1] 16.0 16.5 24.0

Divide Operator (/): It mainly divides the first vector considered with the second one taken.

除法运算符(/) :主要将考虑的第一个向量除以第二个向量。

Example:

例:

v <- c( 2,5.5,6)
t <- c(8, 3, 4)
print(v/t)

Output

输出量

[1] 0.250000 1.833333 1.500000

Remainder Operator (%%): It gives the remainder of the first vector that is considered with the second one.

余数运算符(%%) :它给出与第二个向量一起考虑的第一个向量的余数。

Example:

例:

v <- c( 2,5.5,6)
t <- c(8, 3, 4)
print(v%%t)

Output

输出量

[1] 2.0 2.5 2.0

Division Operator (%/%): The result of the division of the first vector to the second one(quotient).

除法运算符(%/%) :第一个向量除以第二个向量(商)的结果。

Example:

例:

v <- c( 2,5.5,6)
t <- c(8, 3, 4)
print(v%/%t)

Output

输出量

[1] 0 1 1

Raised to the Power (^): The first vector raised to the second one.

提高到幂(^) :第一个矢量提高到第二个。

Example:

例:

v <- c( 2,5.5,6)
t <- c(8, 3, 4)
print(v^t)

Output

输出量

[1]  256.000  166.375 1296.000

2)关系运算符 (2) Relational Operators)

This is one of the sub-branches under the operators available in the R language. The main use of these operators is to find the relation between the two vectors considered.

这是R语言中可用的运算符的子分支之一。 这些运算符的主要用途是找到所考虑的两个向量之间的关系。

The result of these operators is usually a boolean value.

这些运算符的结果通常是布尔值。

Coming to the list of available relational operators in the R language are as follows:

R语言中可用的关系运算符列表如下:

Greater Than>
Less Than<
Equal To==
Greater Than or Equal To>=
Less Than or Equal To<=
Not Equal To!=
比...更棒 >
少于 <
等于 ==
大于或等于 > =
小于或等于 <=
不等于 !=

The above operators have their own meanings while executing the program.

上述运算符在执行程序时具有各自的含义。

Greater Than Operator (>)

大于运算符(>)

The above operator helps the user in the process of determining whether the first number is greater than the second one.

上述运算符在确定第一数字是否大于第二数字的过程中帮助用户。

Example:

例:

v <- c(2,5.5,6,9)
t <- c(8,2.5,14,9)
print(v>t)

Output

输出量

[1] FALSE  TRUE FALSE FALSE

Less Than Operator (

少于运算符(

This operator tells the user whether the first operator is less than the second one.

该运算符告诉用户第一个运算符是否小于第二个运算符。

Example:

例:

v <- c(2,5.5,6,9)
t <- c(8,2.5,14,9)
print(v < t)

Output

输出量

[1]  TRUE FALSE  TRUE FALSE

Equal To Operator (==)

等于运算符(==)

Finds whether the both values are same to each other or not.

查找两个值是否彼此相同。

Example:

例:

v <- c(2,5.5,6,9)
t <- c(8,2.5,14,9)
print(v == t)

Output

输出量

[1] FALSE FALSE FALSE  TRUE

Greater Than or Equal To Operator (>=)

大于或等于运算符(> =)

Confirms whether each component of the foremost vector is superior than or equivalent to the corresponding part of the subsequent vector.

确认最前向量的每个分量是否优于或等效于后续向量的相应部分。

Example:

例:

v <- c(2,5.5,6,9)
t <- c(8,2.5,14,9)
print(v>=t)

Output

输出量

[1] FALSE  TRUE FALSE  TRUE

Less Than or Equal To Operator (<=)

小于或等于运算符(<=)

Verifies if each component of the initial vector is less than or equal to the equivalent element of the next vector.

验证初始向量的每个分量是否小于或等于下一个向量的等效元素。

Example:

例:

v <- c(2,5.5,6,9)
t <- c(8,2.5,14,9)
print(v<=t)

Output

输出量

[1]  TRUE FALSE  TRUE  TRUE

Not Equal To Operator (!=)

不等于运算符(!=)

Verifies if each component of the initial vector is not equal to the equivalent element of the following vector.

验证初始向量的每个分量是否不等于后续向量的等效元素。

Example:

例:

v <- c(2,5.5,6,9)
t <- c(8,2.5,14,9)
print(v!=t)

Output

输出量

[1]  TRUE  TRUE  TRUE FALSE

3)逻辑运算符 (3) Logical Operators)

The following table shows all the available logical operators in the R language. The below operators are applicable over the vectors which are complex, logical or numeric-only. Here the R compiled assumes that all the numbers that are greater than the one are assumed to possess a logic value true.

下表显示了R语言中所有可用的逻辑运算符。 以下运算符适用于复杂,仅逻辑或仅数字的向量。 在此,R编译器假定所有大于一个的数字均具有逻辑值true。

Here while the logical operators are considered then every element available in the first vector is usually compared with the corresponding next element of the second vector. Thus, the result of the above comparison gives us a Boolean value.

在这里,在考虑逻辑运算符的同时,通常将第一向量中的每个可用元素与第二向量中的对应的下一个元素进行比较。 因此,以上比较的结果给出了一个布尔值。

The logical operators offered by the R language are as follows:

R语言提供的逻辑运算符如下:

Element-wise Logical AND operator&
Element-wise Logical OR operator|
Logical NOT operator!
Logical AND operator&&
Logical OR operator||
逐元素逻辑AND运算符
按元素逻辑或运算符 |
逻辑非运算符
逻辑AND运算子 &&
逻辑或运算符 ||

Element-wise Logical AND operator (&)

逐元素逻辑AND运算符(&)

It is named as the Element-wise Logical AND operator. It combines each component of the primary vector with the equivalent part of the next vector and gives an output TRUE if both the fundamental aspects are TRUE.

它被称为Element-wise Logical AND运算符 。 如果两个基本方面都为TRUE,它将主要向量的每个分量与下一个向量的等效部分合并,并给出输出TRUE。

Example:

例:

v <- c(3,1,TRUE,2+3i)
t <- c(4,1,FALSE,2+3i)
print(v&t)

Output

输出量

[1]  TRUE  TRUE FALSE  TRUE

Element-wise Logical OR operator (|)

逐元素逻辑或运算符(|)

It is termed as Element-wise Logical OR operator. It combines each element of the primary vector with the matching element of the subsequent vector and gives an output TRUE if one of the elements is TRUE.

它被称为元素智能逻辑或运算符 。 它将主向量的每个元素与后续向量的匹配元素组合在一起,如果其中一个元素为TRUE,则输出为TRUE。

Example:

例:

v <- c(3,0,TRUE,2+2i)
t <- c(4,0,FALSE,2+3i)
print(v|t)

Output

输出量

[1]  TRUE FALSE  TRUE  TRUE

Logical NOT operator (!)

逻辑非运算符(!)

It is usually called with the name Logical NOT operator. The main function of this operator is that it takes each component of the vector and gives the contradictory logical value.

通常使用名称Logical NOT运算符进行调用。 该运算符的主要功能是获取矢量的每个分量并给出矛盾的逻辑值。

Example:

例:

v <- c(3,0,TRUE,2+2i)
print(!v)

Output

输出量

[1] FALSE  TRUE FALSE FALSE

Logical AND operator (&&)

逻辑AND运算符(&&)

Named as Logical AND operator. It takes the initial component of the first vector and compares it with the second one and finally gives the TRUE value if and only if both are TRUE.

命名为逻辑AND运算符 。 它采用第一个向量的初始分量,并将其与第二个向量进行比较,并且当且仅当两者均为TRUE时,才给出TRUE值。

Example:

例:

v <- c(3,0,TRUE,2+2i)
t <- c(1,3,TRUE,2+3i)
print(v&&t)

Output

输出量

[1] TRUE

Logical OR operator (||)

逻辑或运算符(||)

It is termed as the Logical OR operator. The function of this operator is that it considers the primary components of both the vectors and eventually returns the value as TRUE if and only if one of them turns out to be TRUE.

它被称为逻辑或运算符 。 该运算符的功能是,它考虑两个向量的主要成分,并且仅当其中一个结果为TRUE时,才最终将值返回TRUE。

Example:

例:

v <- c(0,0,TRUE,2+2i)
t <- c(0,3,TRUE,2+3i)
print(v||t)

Output

输出量

[1] FALSE

4)赋值运算符 (4) Assignment Operators)

The main intention of using these assignment operators in the program is to assign some value to the variables or vectors declared.

在程序中使用这些赋值运算符的主要目的是为声明的变量或向量赋值。

There are two ways while assigning the vectors is considered in the R language. They are:

在R语言中,可以采用两种方式分配向量。 他们是:

  • Right assignment

    正确的分配

  • Left assignment

    左分配

Right assignment:

正确分配:

The operators used for right assignment are as follows:

用于权限分配的运算符如下:

  • =

    =

  • <

    <

Example:

例:

v1 <- c(3,1,TRUE,2+3i)
v2 <<- c(3,1,TRUE,2+3i)
v3 = c(3,1,TRUE,2+3i)
print(v1)
print(v2)
print(v3)

Output

输出量

[1] 3+0i 1+0i 1+0i 2+3i
[1] 3+0i 1+0i 1+0i 2+3i
[1] 3+0i 1+0i 1+0i 2+3i

Left assignment:

 

左分配:

Similarly, the operators used while implementing the left assignment technique is as follows:

同样,实现左分配技术时使用的运算符如下:

  • ->

    ->

  • ->>

    ->>

Example:

例:

c(3,1,TRUE,2+3i) -> v1
c(3,1,TRUE,2+3i) ->> v2
print(v1)
print(v2)

Output

输出量

[1] 3+0i 1+0i 1+0i 2+3i
[1] 3+0i 1+0i 1+0i 2+3i

5)杂项运营商 (5) Miscellaneous Operators)

These miscellaneous operators have their own specific purpose of usage in the program. They do not deal with either the logical or mathematical calculations or computations.

这些其他运算符在程序中有其特定的使用目的。 它们不处理逻辑或数学计算或计算。

OperatorDescriptionExample
:Colon operator: This operator creates the series of numerical in sequence for a considered vector.
v <- 2:8
print(v)

Output

%in%This operator is mainly used to recognize if an element/component belongs to the particular vector that is considered.
v1 <- 8
v2 <- 12
t <- 1:10
print(v1 %in% t)
print(v2 %in% t)

Output

%*%This particular operator is used in the case when the multiplication of a matrix with its transpose is required to be performed.
M = matrix( c(2,6,5,1,10,4), nrow = 2,ncol = 3,byrow = TRUE)
t = M %*% t(M)
print(t)

Output

操作员 描述
冒号运算符 :此运算符为考虑的向量顺序创建一系列数值。
v < - 2 : 8
print ( v )

输出量

%在% 该运算符主要用于识别元素/组件是否属于所考虑的特定向量。
v1 < - 8
v2 < - 12
t < - 1 : 10
print ( v1 % in % t )
print ( v2 % in % t )

输出量

%*% 在需要执行矩阵与其转置相乘的情况下,使用此特定运算符。
M = matrix ( c ( 2 , 6 , 5 , 1 , 10 , 4 ) , nrow = 2 , ncol = 3 , byrow = TRUE )
t = M %*% t(M)
print(t)

输出量

翻译自: https://www.includehelp.com/r/operators.aspx

r语言 运算符

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/540529.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

[转载] Python基础之类型转换与算术运算符

参考链接&#xff1a; Python中的运算符函数| 1 一、注释 1.注释&#xff1a;对程序进行标注和说明&#xff0c;增加程序的可读性。程序运行的时候会自动忽略注释。 2.单行注释&#xff1a;使用#的形式。但是#的形式只能注释一行&#xff0c;如果有多行&#xff0c;就不方便…

java awt 按钮响应_Java AWT按钮

java awt 按钮响应The Button class is used to implement a GUI push button. It has a label and generates an event, whenever it is clicked. As mentioned in previous sections, it extends the Component class and implements the Accessible interface. Button类用于…

解决“由于应用程序的配置不正确,应用程序未能启动,重新安装应用程序可能会纠正这个问题”...

在VS2005下用C写的程序&#xff0c;在一台未安装VS2005的系统上&#xff0c; 用命令行方式运行&#xff0c;提示&#xff1a; “系统无法执行指定的程序” 直接双击运行&#xff0c;提示&#xff1a; “由于应用程序的配置不正确&#xff0c;应用程序未能启动&#xff0c;重新安…

qgis在地图上画导航线_在Laravel中的航线

qgis在地图上画导航线For further process we need to know something about it, 为了进一步处理&#xff0c;我们需要了解一些有关它的信息&#xff0c; The route is a core part in Laravel because it maps the controller for sending a request which is automatically …

Logistic回归和SVM的异同

这个问题在最近面试的时候被问了几次&#xff0c;让谈一下Logistic回归&#xff08;以下简称LR&#xff09;和SVM的异同。由于之前没有对比分析过&#xff0c;而且不知道从哪个角度去分析&#xff0c;一时语塞&#xff0c;只能不知为不知。 现在对这二者做一个对比分析&#xf…

[转载] python学习笔记2--操作符,数据类型和内置功能

参考链接&#xff1a; Python中的Inplace运算符| 1(iadd()&#xff0c;isub()&#xff0c;iconcat()…) 什么是操作符&#xff1f; 简单的回答可以使用表达式4 5等于9&#xff0c;在这里4和5被称为操作数&#xff0c;被称为操符。 Python语言支持操作者有以下几种类型。 算…

scala bitset_Scala中的BitSet

scala bitsetScala BitSet (Scala BitSet) Set is a collection of unique elements. 集合是唯一元素的集合。 Bitset is a set of positive integers represented as a 64-bit word. 位集是一组表示为64位字的正整数。 Syntax: 句法&#xff1a; var bitset : Bitset Bits…

构建安全网络 比格云全系云产品30天内5折购

一年之计在于春&#xff0c;每年的三、四月&#xff0c;都是个人创业最佳的起步阶段&#xff0c;也是企业采购最火热的时期。为了降低用户的上云成本&#xff0c;让大家能无门槛享受到优质高性能的云服务&#xff0c;比格云从3月16日起&#xff0c;将上线“充值30天内&#xff…

python中 numpy_Python中的Numpy

python中 numpyPython中的Numpy是什么&#xff1f; (What is Numpy in Python?) Numpy is an array processing package which provides high-performance multidimensional array object and utilities to work with arrays. It is a basic package for scientific computati…

[转载] python之路《第二篇》Python基本数据类型

参考链接&#xff1a; Python中的Inplace运算符| 1(iadd()&#xff0c;isub()&#xff0c;iconcat()…) 运算符 1、算数运算&#xff1a; 2、比较运算&#xff1a; 3、赋值运算&#xff1a; 4、逻辑运算&#xff1a; 5、成员运算&#xff1a; 6、三元运算 三元运算&…

数据结构 基础知识

一。逻辑结构: 是指数据对象中数据 素之间的相互关系。 其实这也是我 今后最需要关注的问题 逻辑结构分为以 四种1. 集合结构 2.线性结构 3.数形结构 4&#xff0c;图形结构 二。物理结构&#xff1a; 1&#xff0c;顺序存储结,2 2. 链式存储结构 一&#xff0c;时间复杂…

ruby 变量类中范围_Ruby中的类

ruby 变量类中范围Ruby类 (Ruby Classes) In the actual world, we have many objects which belong to the same category. For instance, I am working on my laptop and this laptop is one of those laptops which exist around the globe. So, this laptop is an object o…

以云计算的名义 驻云科技牵手阿里云

本文讲的是以云计算的名义 驻云科技牵手阿里云一次三个公司的牵手 可能会改变无数企业的命运 2017年4月17日&#xff0c;对于很多人来说可能只是个平常的工作日&#xff0c;但是对于国内无数的企业来说却可能是个会改变企业命运的日。驻云科技联合国内云服务提供商阿里云及国外…

[转载] python学习笔记

参考链接&#xff1a; Python | a b并不总是a a b 官网http://www.python.org/ 官网library http://docs.python.org/library/ PyPI https://pypi.python.org/pypi 中文手册&#xff0c;适合快速入门 http://download.csdn.net/detail/xiarendeniao/4236870 py…

标志寄存器_访问标志寄存器,并与寄存器B |交换标志寄存器F的内容 8085微处理器...

标志寄存器Problem statement: 问题陈述&#xff1a; Write an assembly language program in 8085 microprocessor to access Flag register and exchange the content of flag register F with register B. 在8085微处理器中编写汇编语言程序以访问标志寄存器&#xff0c;并…

浏览器端已支持 ES6 规范(包括 export import)

当然&#xff0c;是几个比较优秀的浏览器&#xff0c;既然是优秀的浏览器&#xff0c;大家肯定知道是那几款啦&#xff0c;我就不列举了&#xff0c;我用的是 chrome。 对 script 声明 type 为 module 后就可以享受 es6 规范所带来的模块快感了。 基础语法既然是全支持&#xf…

[转载] Python学习:Python成员运算符和身份运算符

参考链接&#xff1a; Python中和is运算符之间的区别 Python成员运算符 除了以上的一些运算符之外&#xff0c;Python还支持成员运算符&#xff0c;测试实例中包含了一系列的成员&#xff0c;包括字符串&#xff0c;列表或元组。 运算符 描述 实例 in 如果在指定的序列中找…

量词逻辑量词里面的v表示?_代理知识表示中的量词简介(基于人工智能)

量词逻辑量词里面的v表示&#xff1f;As we know that in an AI-based agent, the knowledge is represented through two types of logic: The propositional logic and the predicate logic. In the propositional logic, we have declarative sentences, and in the predica…

[转载] Python 机器学习经典实例

参考链接&#xff1a; Python中的逻辑门 内容介绍 在如今这个处处以数据驱动的世界中&#xff0c;机器学习正变得越来越大众化。它已经被广泛地应用于不同领域&#xff0c;如搜索引擎、机器人、无人驾驶汽车等。本书首先通过实用的案例介绍机器学习的基础知识&#xff0c;然后…

哈希表的最差复杂度是n2_给定数组A []和数字X,请检查A []中是否有对X | 使用哈希O(n)时间复杂度| 套装1...

哈希表的最差复杂度是n2Prerequisite: 先决条件&#xff1a; Hashing data structure 散列数据结构 Problem statement: 问题陈述&#xff1a; Given an array and a sum X, fins any pair which sums to X. Expected time complexity O(n). 给定一个数组和一个和X &#xff…