Displaying 2 results from an estimated 2 matches for "tden".
Did you mean:
then
2020 Feb 26
1
Matching regexps
...m" "<[a-z0-9-]*@[a-z0-9-.]*>" { set "sender" "${1}"; }
if not execute "grepfrom" ["${sender}"] {
if envelope :matches "from" "*" { set "sender" "${1}"; }
This failes to match Tamara Denning <tdenning at cs.utah.edu> when I
check that regexp against that string at regex101.com, it shows a
match, but the log (from sieve-test) shows:
348: header test
348: starting `:matches' match with `i;ascii-casemap' comparator:
348: extracting `From' headers from message
348: match...
2005 Feb 05
1
Labelling and formatting of graphics
...f the code below, I want to do the following:
- get hats over some of the betas
- get the polygons stippled, not coloured grey
- remove the tick marks at the ends of the axes. If I put tick =
false, the whole axis disappears.
betahat <- c(0.04*0:150)
betahatdens <- dnorm(betahat, 3, 1)
plot(betahat, betahatdens, xlim = c(-0.2, 6.2), ylim = c(-0.09, 1),
type = "l", lwd = 2, xlab = NA, ylab = NA, axes = FALSE)
axis(1, pos = 0, labels = FALSE, tick = TRUE, at = c(0, 2, 3, 4, 6))
axis(2, pos = 0, labels = FALSE, tick = TRUE, at = c(0, 0.5...