전산학과 생물학에서 쓰는 의미가 다르다.

in MolecularBiology

Operon에서 coding region을 발현시키느냐 아느냐를 결정하는 영역. 보통 repressor가 binding하여, coding region이 발현되지 않는다.

in ComputerScience

AnswerMe Operator 가 뭡니까? R 공부 하다가 메뉴얼에 아래 처럼 나와 있는데 그 정확한 의미가 무었인지?............. DrPepper

R allows the use of arithmetic expressions using operators similar to those of the C programming
language, for instance
> 1 + 2
[1] 3

Expressions can be grouped using parentheses, mixed with function calls, and assigned
to variables in a straightforward manner
> y <- 2 * (a + log(x))
  • Operator란 연산자입니다. (+, -, *, 등등...) 윗 예에서 Cee언어의 연산자랑 비슷하다는 얘기는 즉, 더할려면 + 를, 곱할려면 * 를 쓰라는 의미이고, 그 밑 문단은 소괄호로 우선순위가 지어지고, 함수와도 같이 연결해서 쓸수 있다는 의미입니다. 그리고 이 내용은 R 페이지에 적으심이 어떠실지... --yong27, 2005-02-03

Operator (last edited 2011-08-21 16:43:15 by 211)

web biohackers.net