## ## Laboratorio saioa: RStudiorekin hasten ## 1.- R-ren laguntza help.start() ## Funtzioei buruzko informazio zehatzagoa hemen aurkituko duzu: ## http://stat.ethz.ch/R-manual/R-devel/library/base/html/00Index.html ## ## Information on package ‘base’: library(help="base") ## %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ## Hainbat funtziorekin trebatzen ## %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ## Assignment Operators (<-, ->, =) x<-2 3-> y z=4 x y z ## Arithmetic Operators (+, -, *, /, ^, %%, %\%) x+y (x+y)-z ((x+y)-z)*z/x x^y ## Laguntzan sakatu %% ze eragiketa den ikusteko ## Value atalean zera dio: ## %% indicates x mod y and %/% indicates integer division. (y+z) %% x (y+z) %/% x ## Relational Operators (<, >, <=, >=, ==, !=) xy x<=y x>=y x==y x!=y ## Logical Operators (logical negation !, logical AND &, logical OR |) !(x