Posts

Howto fix outdated backport repository in tails?

Image
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box; } 1 i have basically the same problem as Tails additional software unmet dependencies , but cant comment right now. I am running tails 3.12, live version, and adding additional software is not working after the restart, unlike before the update. "[INFO] remmina : Depends: libssh-4 (>= 0.8.1) but 0.7.3-2+deb9u1 is to be installed " I have exactly 3 versions of libssh, 2 of them meeting the dependencies, but the last one is not. And that is the one from the backport repository, I needed for remmina. Is there some way to fix that right away? Or just wait, until the backport repo gets updated? Thank you in advanc...

Interpretation of R output from Cohen's Kappa

Image
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0; } 3 2 $begingroup$ I have the following result from carrying out Cohen's kappa in R library(irr) n = 100 o = c(rep(0,n), rep(1,n)) p = c(rbinom(n,1,0.5), rbinom(n,1,0.51)) k = kappa2( data.frame(p,o), "unweighted" ) k Which outputs Cohen's Kappa for 2 Raters (Weights: unweighted) Subjects = 200 Raters = 2 Kappa = -0.08 z = -1.13 p-value = 0.258 My interpretation of this the test is displaying that there seems to be disagreement between the two vectors as kappa is negative. However, given the p value of 0.258 we can't say that this disagreement is significant, and may just be down to chance. ...