Search
About
Datasets
Models
Log In
Sign Up
Log In
Sign Up
Models
:
DanielG
/
voomDDA
Like
0
Downloads: 1
Card
Git
Discussions
[81de4e]
:
/ w.mean.R
History
Download this file
6 lines (6 with data), 74 Bytes
1
2
3
4
5
6
w.mean
=
function
(
x
,
w
)
{
wx
=
w
*
x
sum
(
wx
)
/
sum
(
w
)
}