Displaying 20 results from an estimated 3000 matches similar to: "Something similar to data.frame, but allows variables with unique lengths?"
2009 Nov 20
6
How to add a top level title to multiple plots
How can I add an overall plot title to these four plots?
I would like to have something that says, "Distribution Comparisons":
par(mfrow = c(2, 2))
# Plot 1
plot(rnorm(10),type="l",col="red")
title(main = list(paste("Normal"),
????????????????????????? col="black", cex = 1.0))
# Plot 2
plot(rpois(10,
2019 Jan 03
7
gcc -> clang
Please, use clang instead of gcc. Code quality can only profit from it. I just compiled 2.3.4 and compiler stderr is full of interesting problems.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://dovecot.org/pipermail/dovecot/attachments/20190103/83b1b813/attachment.html>
2007 Aug 12
5
stubbing a method that yeilds sequential results
I''ve just found myself stuck trying to rspec something so am hoping
someone more knowledgable can help.
I have a Connector class which has a class method ''results'' that
yields results it get from a network service based on a set of
attributes that I pass to it. I am wanting to yield these results
from my Intermediate class up to the next
2009 Aug 04
5
Stacked plots with common x-axis and different y-axis
Is there a place that shows how to create two plots that are stacked on top of each other where they share a common x-axis scale, but have differnt y-axis scale?
Say have the following data: airquality
Stack plot(airquality$Day, airquality$Wind) on top of plot(airquality$Day, airquality$Temp).
I am interested in stacking the two on top of each other with no seam, or plotting the two lines with
2018 May 23
5
Bug: subscriptions file
Sorry for top posting, my client is still broken.
I have never seen the ghost of a "system-alerts" or similar "well-known" mail folder in the past 30 years.
Compliance with an RFC obscure feature is compellong us all to clear subscriptions fol ders by hand.
As we meet the problem over and over again, a non-RFC configuration option could solve the problem, and it would be
2017 Oct 30
8
How to limit Apple Mail (desktop)?
By default, Apple Mail downloads all e-mails from server's account. Previous versions of this client allowed to opt-out. The latest two versions? however, only allow to opt-out from downloading the attachments.
The stress on the server is unbearable. We cannot ask users to be considerate: this is the default behaviour of Apple Mail.
We need a server-side solution to the problem.
Please
2017 Jul 01
2
dovecot 2.2.31: linking error
I would rather choose what to install.
Sent from ProtonMail Mobile
On Sat, Jul 1, 2017 at 1:02 PM, Sami Ketola <sami.ketola at dovecot.fi> wrote:
>> On 1 Jul 2017, at 13.08, Rupert Gallagher wrote: > > I tried compiling without "--with-storage=maildir" and it terminated without error. I need to enforce maildir, however. You can enforce maildir in configuration. Sami
2018 Oct 18
2
Ass(et) protection for mobile users
Connections from anything other than LAN.
On Thu, Oct 18, 2018 at 08:49, Aki Tuomi <aki.tuomi at open-xchange.com> wrote:
> On 18.10.2018 9.48, Rupert Gallagher wrote:
>> Hello!
>>
>> Is it possible to hide the public folder when the user is on its
>> mobile phone?
> How would you know this?
>
> Aki
-------------- next part --------------
An HTML
2017 May 02
6
IMAP-auth on LAN and otherwise
Hello,
Thunderbird has been bugging us with connection errors. Dovecot is installed on a local server that carries a local IP and a public IP. When Thunderbird on a local client connects successfully, Wireshark shows a SYN request from the client's IP on LAN to the public IP of the server, followed by the ACK from the same public IP. When Thunderbird on the same local client fails to connect,
2009 Jul 09
4
Issues with file.info?
Are there any tricks associated with file.info?
I just tried it on a directory folder and it returned NA for all fields for all files. I tried it on a different folder with different files and it still returned NA.
I tried it on a specific file and it returned all the proper info correctly.
Just wondering if there are any tricks I've overlooked.
2018 Oct 18
4
Ass(et) protection for mobile users
Hello!
Is it possible to hide the public folder when the user is on its mobile phone?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://dovecot.org/pipermail/dovecot/attachments/20181018/56ae5e41/attachment.html>
2009 Feb 04
5
Target Plot?
I've done a little snooping around the R Gallery Site (http://addictedtor.free.fr/graphiques/) and the "Statistics with R" site (http://zoonek2.free.fr/UNIX/48_R/all.html), but I can't seem to find what I'm looking for.
Here is the type of plot I would like to draw:
(1) 2-D three axis plot where each axis is separated by 120-degrees (would be great if the number of axis
2009 Nov 30
3
bug or bizarre feature?
Hello,
I'm running into a very strange problem:
> xrange <- c(-2.5,2.5)
> xdim <- 100
> mobility <- 0.1
> slope <- 1.16
> urange <- slope*xrange
> udim <- max(slope*xdim,5)
> du <- (urange[2]-urange[1])/udim
> uvec <- urange[1]+(1:udim-0.5)*du
> # type dependent weight function
> ckern <-
2009 Jul 16
6
Best way to replace :SS with :00
Not sure if there is an R way to do this or a regular express way, but here is what I am trying to do.
I've got lots of data where the format is HH:MM:SS, but I need to format it like HH:MM:00, i.e. round the second down to zero.
What is the best way to do this?
Thanks again.
Jason
2017 Jun 29
4
dovecot 2.2.31: linking error
-std=gnu99
-mmacosx-version-min=10.12
[...]
Undefined symbols for architecture x86_64:
"_imapc_client_cmd", referenced from:
_imapc_quota_refresh in quota-imapc.o
"_imapc_client_get_capabilities", referenced from:
_imapc_quota_refresh in quota-imapc.o
"_imapc_command_sendf", referenced from:
_imapc_quota_refresh in quota-imapc.o
"_imapc_simple_callback",
2007 Aug 31
48
Deprecating the mocking framework?
I saw in one of Dave C.''s comments to a ticket that "our current plan
is to deprecate the mocking framework." I hadn''t heard anything about
that, but then again I haven''t paid super close attention to the list.
Are we planning on dumping the mock framework in favor of using Mocha
(or any other framework one might want to plug in?).
Pat
2009 Jul 09
5
Best way to export values from a function?
Maybe there is a great website out there or white paper that discusses this but again my Google skills (or lack there of) let me down.
I would like to know the best way to export several doubles from a function, where the doubles are not an array.
Here is a contrived function similar to my needs:
multipleoutput<-function(x)
{
squared<-x^2
cubed<-x^3
exponentioal<-exp(x)
2017 Oct 31
3
How to limit Apple Mail (desktop)?
> What's in your mind as solution?
When dovecot receives many full body downloads from a client, it could respond by sending the header only.
Sent from ProtonMail Mobile
On Tue, Oct 31, 2017 at 11:29 AM, <ml+dovecot at moritz.augsburger.name> wrote:
> Hi, On 30.10.2017 10:38, Rupert Gallagher wrote: > We need a server-side solution to the problem. more powerfull hardware?
2009 Jun 26
3
Automatically placing a legend in an area with the most white space...
At one point I believe I heard of an R package that would automatically find the most empty space in a plot, and then that answer could then be used to intelligently place a legend.
I would like to try to apply that R package to the contrived example shown below, so thank you for any hints or tips that can be provided.
x = seq(0, 1000, by = 1)
y1_vals<-rnorm(1000, mean = 0, sd = 50)
2010 May 12
2
Whiskers on the default boxplot {graphics}
How are the lower/upper whiskers defined in the default version of boxplot {graphics}?
I tried help(boxplot) and searching www.rseek.org, but I was unable to determine an absolute answer.
I checked out the definition of boxplot according to Wikipedia (http://en.wikipedia.org/wiki/Box_plot), but it also had several approaches
listed for how the whiskers could be determined, so I'm just