Displaying 4 results from an estimated 4 matches for "loffset".
Did you mean:
offset
2008 Nov 22
0
[patch] [vuxml] net/wireshark: fix DoS in SMTP dissector
...c dissector_table_t media_type_dissector_table;
+-
+-
+ static dissector_handle_t imf_handle = NULL;
+
+ /*
+@@ -175,6 +171,7 @@
+ gint length_remaining;
+ gboolean eom_seen = FALSE;
+ gint next_offset;
++ gint loffset;
+ gboolean is_continuation_line;
+ int cmdlen;
+ fragment_data *frag_msg = NULL;
+@@ -217,21 +214,6 @@
+ * longer than what's in the buffer, so the "tvb_get_ptr()" call
+ * won't throw an exception.
+ */
+-...
2003 Sep 29
5
colours in dotchart (PR#4343)
Problem: neither fg or bg
nor color work properly in dotchart.
version: R-1.7.1 for windows
code which shows the errors:
x <-
matrix(rnorm(16),ncol=2,dimnames=list(paste("a",1:8,sep=""),c("before","afte
r")))
dotchart(x,fg="blue",bg="lightgrey")
dotchart(x,color=c("red","blue"))
Dr Ian J Wilson
Lecturer in
2001 Jan 18
2
dotplot: character size of labels
Dear R users,
using dotplot (R1.2.0, WinNT4.0), I am trying to change the character size
of the labels of the points:
> # example
> data(VADeaths)
> dotplot(VADeaths, main = "Death Rates in Virginia - 1940")
> # I'd like to have smaller character size of the labels (for age and
population groups)
> ?dotplot
> # for argument "cex", this says:
2001 Jan 18
0
dotplot: character size of labels (PR#816)
...t; > > dotplot(VADeaths, main = "Death Rates in Virginia - 1940", cex.lab =
> 0.5)
> >
> > I'd be grateful for any hint how to do this correctly;
>
> Looks like a bug. Inside dotplot alter to
>
> for (i in 1:n) mtext(labs[i], side = 2, line = loffset,
> at = y[i], adj = 0, col = color, las = 2, cex = cex, ...)
>
> for (i in 1:nlevels(groups)) mtext(glabels[i], side = 2,
> line = goffset, at = gpos[i], adj = 0, col = gcolor,
> las = 2, cex = cex, ...)
>
> However, it really needs...