search for: postnat

Displaying 2 results from an estimated 2 matches for "postnat".

Did you mean: postcat
2019 Aug 04
2
[Bug 1359] New: nft 0.9.1 - table family inet, chain type nat, fails to auto-load modules
...nft Assignee: pablo at netfilter.org Reporter: james at nurealm.net Arch Linux linux 5.2.5.arch1-1 nftables 1:0.9.1-1 For clarity, removing any nat rules, then: ... table inet nats { chain prenats { type nat hook prerouting priority -100; } chain postnats { type nat hook postrouting priority 100; } } ... $ sudo /etc/nftables.conf /etc/nftables.conf:374:8-14: Error: Could not process rule: No such file or directory chain prenats { type nat hook prerouting priority -100; ^^^^^^^ /etc/nftables.conf:395:8-15: Error: C...
2004 Jul 19
3
why won't rq draw lines?
I've been trying to draw quantile linear regression lines across a scatterplot of my data using attach(forrq) plot(PREGNANT,DAY8,xlab="pregnant EPDS",ylab="postnatal EPDS",cex=.5) taus <- c(.05,.1,.25,.75,.9,.95) xx <- seq(min(PREGNANT),max(PREGNANT),100) for(tau in taus){ f <- coef(rq(DAY8~PREGNANT,tau=tau)) yy <- (f[1]+f[2]*xx) lines(xx,yy) } which is simply the method from...