R Dili | İki Vektörü Toplama Programı

1

1Jeff

Developer & Coder
Thread Starter
Ultra Member
Joined
Oct 20, 2019
Messages
720
Reaction score
443
Location
Helsinki
Bu örnekte, R operatörlerini kullanarak iki vektörü toplamayı öğreneceksiniz.
Code:
x <- c(3,6,8)
y <- c(-2,9,0)
 
x+y
 
x + 1 # 1 -> (1,1,1) şeklinde dönüştürülür
 
x + c(1,4) #vektör uzunlukları aynı olmadığı için hata verir
 
x + c(1,4,1) #vektörünü (1,4,1) olarak değiştirdik

Çıktı:
Code:
> x <- c(3,6,8)
> y <- c(-2,9,0)
>
> x+y
[1]  1 15  8
>
> x + 1 # 1 -> (1,1,1) şeklinde dönüştürülür
[1] 4 7 9
>
> x + c(1,4) #vektör uzunlukları aynı olmadığı için hata verir
[1]  4 10  9
Warning message:
In x + c(1, 4) :
  uzun olan nesne uzunluğu kısa olan nesne uzunluğunun bir katı değil
>
> x + c(1,4,1) #vektörünü (1,4,1) olarak değiştirdik
[1]  4 10  9
>
 
SPAM IS FORBIDDEN!
  • SPAMMERS ARE BANNED FROM THE FORUM AND CANNOT USE ANY OF THE CHEATS
  • For example: thanks, thx, very good, asdqwe, working, ty and so on!
  • For example: Writing the same message over and over. thanks, thx and so on!
  • Copying and copying someone else's message is prohibited.
  • It is forbidden to send messages to increase the number of comments on threads that you have no knowledge of.
  • Write your own opinion when commenting!
  • If you see spam message, please let us know with the REPORT button!

Theme editor

Top Bottom