Displaying 20 results from an estimated 5000 matches similar to: "error:060A7094:digital envelope routines:EVP_EncryptUpdate:invalid operation"
2019 May 08
0
error:060A7094:digital envelope routines:EVP_EncryptUpdate:invalid operation
When I install Tinc 1.1pre17 on Debian (from the 1.1~pre17-1.1 package in
experimental), I hit the following error:
Error while decrypting: error:060A7094:digital envelope
routines:EVP_EncryptUpdate:invalid operation
I tried compiling Tinc myself from the Debian source, and still hit the
same issue. 1.0 works fine, but I'd like to upgrade to 1.1
Any ideas on how to fix it?
I'm using
2019 Oct 17
3
error while decrypting metadata
One of my hosts just rebooted for the first time in ages, and now it
won't connect to any other nodes.
The log just contains continual "error while decrypting metadata" errors.
tincd[8324]: Error while decrypting: error:060A7094:digital envelope
routines:EVP_EncryptUpdate:invalid operation
tincd[8324]: Error while decrypting metadata from fairfield_gw
(yy.yy.yy.yy port 655)
2012 Jun 28
1
custom graphing of box and whisker plots
Hi,
I'm trying to graph some data in a boxplot-like style, but I want to set
the box and whisker limits myself (rather than having R calculate them for
me). I'd like the boxes to be shaded and the whiskers to be dotted lines.
My data are set up is something like this:
min.whisker max.whisker min.box max.box species
0 200 20 37
2019 Feb 28
0
[PATCH branch 1.1] fix: use EVP_DecryptUpdate while decrypting
From: Andreas Rammhold <andreas at rammhold.de>
With OpenSSL versions 1.0.2r & 1.1.1b there were changes in regards to
how OpenSSL treats misuse of Encrypt/Decrypt EVP methods in the opposite
case. E.g. using the encrypt methods in a decrypt context. OpenSSL now
returns an error in these situations. [1]
Since tinc used the EVP_EncryptUpdate function in the cipher_decrypt
function the
2012 Sep 29
3
Removing lower whisker in boxplot to see the effects of the high values
Good Afternoon-
I was wanting to alter the boxplot to remove the lower whisker, both the
whisker line and staple just on the lower end. Is there a way to do this?
As my code is currently:
boxplot(log_loads~ind,data=nfmaum, horizontal=TRUE, notch=T, outline=FALSE,
whisker=0, main="Maumee River Near Future Climate Scenarios", ylab="Log
Load",xlab="Climate Scenarios")
2003 May 11
2
what does boxplot draw?
Dear r-help,
Unfortunately I cannot find in the documentation what determines
ranges of a 'box' in the box-and-whisker plot.
It is said in "Simple R" (http://www.math.csi.cuny.edu/Statistics/R/simpleR)
that they are 1st and 3rd Qus usually.
I tried to add to boxplot lines with (quantile(x,probs=0.25)), but
lines do not coincide with edges of boxes.
2009 Jul 12
2
box and whisker (PR#13821)
In a Box and Whisker plot, I thought that when there are outliers both abov=
e and below the whiskers, then the whiskers should both be the same length =
(plus or minus 1.5 times the inter-quartile range).
If you look at the plot for SilwoodWeather on p.155 of The R Book you will =
see that for November (month =3D 11) the upper whisker is shorter than the =
lower, while for other months with
2011 Feb 24
1
Boxplot not doing what I think it should
My box plot below is drawing its upper whisker all the way to the last point, instead of showing the point as an outlier. Am I misunderstanding, or is it a bug?
Help(boxplot) states for the parameter ?range? that ?this determines how far the plot whiskers extend out from the box. If range is positive, the whiskers extend to the most extreme data point which is no more than range times the
2008 Sep 18
1
outlier and whisker in boxplot
Hi, Dear R-users:
Sorry for bothering your guys again. I think I should rewrite my question.
I know how to extend whisker by using range. The question is that I will set
the range=1.5, and at the same time, I only want to show the extreme
outlier, like 0.01% and 99.99% percentile, so what should I do?
Thank you very much!
Catherine
--
View this message in context:
2008 Sep 18
1
about the whisker in boxplot
Hi, Dear R-users,
I have a problem when I drawing a boxplot. I want to extend the whisker to
the 5% and the 95% quantiles and only show the most extreme outlier, like
0.01% and 99.99% percentiles. What should I do?
I saw something on boxplot.stat, but even I define the parameter in
boxplot.stat, what I should do next? how to connect it to boxplot?
Thank you very much!
Catherine
--
View
2010 May 09
2
changing parameters of the box and whisker plot
Hello:
I am plotting some data using the box and whisker plot. However, I only want to plot the median, max and min, as I only have these values and not the quartile values. It seems R arbitrarily constructs the box margins to be halfway between the median and the max/min. How do I make the box and whisker plots without the box values?
Thanks,
Michael
[[alternative HTML version
2008 Sep 17
0
how to extend the whisker in boxplot?
Hi, Sorry for bothering your guys. I am still working on boxplot.
How can I extend the whisker to the 5% and the 95% quantiles? What I should
do if I only want to show the most extreme outlier, like 0.01% and 99.99%
percentiles?
I saw something on boxplot.stat, but I even donot know how to connect it to
boxplot?
Thank you very much!
suppose the follow is the data to make the boxplot.
a <-
2009 Jul 30
2
how to change the thickness of the lines of the boxplot outliers
Hi,
I tried to use boxplot function. I am following the ?boxplot and can
change the whisker box width using lwd parameter. However, when
outline=TRUE, the thickness of the circle of the outliers is not
proportionally changed when I change the line width of the whisker
box. There must be another parameter for that. Unfortunately I don't
know.
please help and thanks much in advance.
--
2005 Jul 10
2
Boxplot in R
I am trying to draw a plot like Matlab does:
The upper extreme whisker represents 95% of the data;
The upper hinge represents 75% of the data;
The median represents 50% of the data;
The lower hinge represents 25% of the data;
The lower extreme whisker represents 5% of the data.
It looks like:
--- 95%
|
|
------- 75%
| |
|-----| 50%
| |
| |
-------
2007 Aug 30
1
boxplot will remember the factor levels
R-help,
I'm trying to do a simple box-and-whisker plot to some data.
The data are a subset of a large data frame
but when running the "boxplot" function on the subset data
all the factors are still present in the graph leaving a huge
empty space until the actuals factors are shown.
This produces a spurious box-and-whisker plot.
If the subset data are exported to another R session
2004 Jul 09
3
Problem with bwplot
Try factor(vec2) in your bwplot() call.
-----Original Message-----
From: r-help-bounces at stat.math.ethz.ch
[mailto:r-help-bounces at stat.math.ethz.ch]On Behalf Of Ernesto Jardim
Sent: Friday, July 09, 2004 9:41 AM
To: Mailing List R
Subject: [R] Problem with bwplot
Hi,
I'm ploting some box-and-whisker plots with bwplot but I'm not getting
any box-and-whiskers ... just dots.
2013 Feb 12
0
how to change whisker width in bwplot (lattice)
Hello,
I am using lattice to draw boxplots.
I would like to make the whisker look shorter than the box width.
Please kindly advise how to modify the code.
Thank you.
Elaine
code
bwplot(x,y,
pch=rep("|",2),
box.umbrella = list(col = "black", lty = 1))
[[alternative HTML version deleted]]
2006 Dec 13
2
why are my multiple box & whisker plots so small?
Hi all,
I'm sure this is reallly basic, but I just can get it to work. I want to
plot six box & whisker plots together to make one figure so that they
appear one below the next.
I can do this using >par(mfrow=c(6,1)), but each box&whisker plots end up
vertically compressed to the point where I can't see the actual bars, and
there is a large amount of white space between each
2010 Dec 17
3
box-and-whisker plots based on summary not data
Hi,
Is it possible to produce box-and-whisker plots given that I have the
median, interquartile and 5/95th centile values, but not the data from
which they come? It seems that it ought to be possible to coerce bxp
to do what I want, but I can't quite see how.
Thanks,
Matthew
--
Matthew Vernon, Research Fellow
Ecology and Epidemiology Group,
University of Warwick
2009 Nov 20
1
boxplot question
Hi there,
I was wondering if anybody can explain to me why the boxplot ends up
with different results in the following case:
I have some integer data as a vector and I compare the stats of boxplot
with the same data divided by a factor.
I've attached a csv file with both data present (d1, d2). The factor is
34.16667.
If I run the boxplot function on d1 I get the following stats: