gnome_effect.Rd
Function to calculate proportion of phenotypic variance increase due to AC covariance
gnome_effect(a, c, e, g, b, varA = 1, varC = 1, varE = 1)
Additive genetic path coefficient
Shared environment path coefficient
Non-shared environmental path coefficient
Path coefficient cultural transmission
Path coefficient sibling interaction
Additive genetic variance
Shared environment variance
Non-shared environmental variance
Proportion of phenotypic variance increase due to AC covariance
gnome_effect(a = sqrt(.4), c = sqrt(.3), e = sqrt(.3), g = 0, b = sqrt(.05))
#> $mz
#> [1] 0.3328427
#>
#> $dz
#> [1] 0.1914214
#>
gnome_effect(a = sqrt(.4), c = sqrt(.3), e = sqrt(.3), g = sqrt(.05), b = 0)
#> $mz
#> [1] 0.3828427
#>
#> $dz
#> [1] 0.3828427
#>
gnome_effect(a = sqrt(.4), c = sqrt(.3), e = sqrt(.3), g = sqrt(.05), b = sqrt(.05))
#> $mz
#> [1] 0.8156854
#>
#> $dz
#> [1] 0.6742641
#>