简体   繁体   中英

Creating a for loop that takes a manual sum of squares within and between groups

Per my lack of understanding of loops, I'm wondering how I might go about translating these two mathematical functions into R. Any help would be greatly appreciated!

在此处输入图片说明

My real confusion is more-so that I don't know how I might start coding a sum into R

Start by trying to understand this

a = 1:100
mysum = 0
for (i in seq_along(a)){
  mysum = a[i] + mysum 
}
mysum

This code sums the numbers from 1:100

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM