similar to: Why do histogram bars vary their width?

Displaying 20 results from an estimated 200 matches similar to: "Why do histogram bars vary their width?"

2009 Dec 29
1
Effect of na.omit()
I had an NA in one row of my data frame, so I called na.omit(). But I do not understand where that row disappeared to. >fri=na.omit(fri) > fri Date.Only DAY Hour Min15 Quarter Arrival.Val Arrival4 1 09/05/2008 Friday 8 33 3 32 8 2 10/24/2008 Friday 21 86 4 28 7 3 10/31/2008 Friday 8 33 4 20
2009 Dec 26
3
How to manipulate tables
I am sorry to be bothering the list so much. I made a table of counts of flight arrivals by hour: cnts=tapply(Arrival4,list(Hour),table). There are up to 15 arrivals in a bin. > cnts $`0` 1 2 3 4 5 6 7 8 9 10 13 1 2 5 9 2 7 5 4 2 4 1 $`1` 1 2 3 4 3 2 2 1 $`2` 1 3 2 2 . . . My first problem is how to get this table filled in with the 0 slots. E.g., I want $`0` 1 2
2019 Feb 19
1
Need to authenticate Outlook and NTLM
On 19.2.2019 4.48, Mark Foley via dovecot wrote: > On Mon, 18 Feb 2019 10:17:16 -0000 Stuart Henderson wrote: >> On 2019-02-13, Mark Foley via dovecot <dovecot at dovecot.org> wrote: >>> Is it possible that no one on this list is authenticating Outlook with Dovecot and NTLM? >> Yes, it's possible, the outdated instructions you found on the wiki >> suggests
2019 Feb 13
2
Need to authenticate Outlook and NTLM
Is it possible that no one on this list is authenticating Outlook with Dovecot and NTLM? --Mark -----Original Message----- Date: Fri, 08 Feb 2019 00:51:01 -0500 To: dovecot at dovecot.org Subject: Re: Need to authenticate Outlook and NTLM From: Mark Foley via dovecot <dovecot at dovecot.org> More on this ... I short-sheeted ntlm_auth to see what was being passed to it. It is getting as
2019 Feb 08
4
Need to authenticate Outlook and NTLM
I've posted questions on this before, but now I really, really need a solution. Using Dovecot 2.2.33.2 We've been using Dovecot as IMAP server for several years on a Linux host which is also the Active Directory / Domain Controller. We have both Thunderbird and Outlook clients. The Thunderbird clients authenticate w/o problem with AD credentials using Kerberos/GSSAPI. I've never
2019 Feb 18
0
Need to authenticate Outlook and NTLM
On 2019-02-13, Mark Foley via dovecot <dovecot at dovecot.org> wrote: > Is it possible that no one on this list is authenticating Outlook with Dovecot and NTLM? Yes, it's possible, the outdated instructions you found on the wiki suggests it's an uncommon configiration. No actual answers from me, but it might give you some clues: > More on this ... > > I short-sheeted
2019 Feb 19
0
Need to authenticate Outlook and NTLM
On Mon, 18 Feb 2019 10:17:16 -0000 Stuart Henderson wrote: > > On 2019-02-13, Mark Foley via dovecot <dovecot at dovecot.org> wrote: > > Is it possible that no one on this list is authenticating Outlook with Dovecot and NTLM? > > Yes, it's possible, the outdated instructions you found on the wiki > suggests it's an uncommon configiration. Hmmm, really? And yet
2011 May 20
2
Faxing with Asterisk 1.8.4 & T.38
Hi - I am looking for suggestions for ITSPs for faxing with asterisk 1.8. We are based in the US, so would need an ITSP with US DIDs. #1) We would like to use Fax For Asterisk with asterisk 1.8.4 in order to receive faxes via T.38. Sending faxes is not a requirement. Does anyone have a working asterisk 1.8.4 configuration and ITSP provider that they can recommend? We have been trying T.38
2010 Mar 15
2
Problem with an older VB program
I'm fairly new to linux and completely new to Wine, so please bear with me. I am trying to run a game, Extreme Warfare, an old wrestling simulator, from a thumb drive. When I browse to it through "browse C: drive" and double click, nothing happens. No error messages or anything. Doing it through the command line, I get the message > kirk at kirk-laptop:~/.wine/drive_c/EWR$
2003 Sep 13
2
SJphone DTMF?
Hi. I have sjphone installed on windows and working except for dtmf. I read the docs for sjphone and it uses inband dtmf. I configired dtmfmode=inband but it still does not recognize it. Someone on the lists said that inband only works using alaw or ulaw but i tried only allowing that too but still no go. Hmm.. any other ideas? I can't get any other client to work on windows :-/ I
2011 Mar 22
0
why the survival function estimate using package 'mstate' & package 'cmprsk' vary from sas and LTA (From WHO).
hello,everyone: I am now confused in multistate survival , when I want to poccess a multistate survival analysis, I turn to R and the package 'mstate' and packege 'cmprsk'. When I come to publishing the article. Follow requirement of the magzine, the statistic is carry out in LTA package (which was said to be a authority in intauterine from WHO) . There we found difference
2011 Jan 03
0
Keeping lattice plot axes in the same place when legend sizes vary
Dear all, I am generating a number of lattice plots with common axes but varying legends. There is one plot in the window at a time. I would like the plot axes to always appear in the same place within the window (and saved images) so the plots do not move around when they are combined in a video or browsed in something like an HTML document. The default behaviour of the lattice package is
2012 Nov 28
1
Stripchart colors don't vary after I sort a data frame
# Hi, # This plot has two colors. overflow <- read.csv('http://chainsaw.thomaslevine.com/overflow.csv', stringsAsFactors = F) png('original.png') stripchart(overflow$precipi ~ overflow$after.9.am, method='stack', pch = 22, bg = overflow$overflow + 1, vertical = T, col = 0) dev.off() # I wanted continuous bands of color, so I sorted the data frame. # But after
2018 Mar 21
0
Vary an equation using values from a sequence
It depends a bit on what you plan to do with the results. A loop would be easy and straightforward: > k <- 1:5 > for(k in 1:5) print(Data - min(Data) + k) [1] 1 2 3 4 5 6 7 8 9 10 [1] 2 3 4 5 6 7 8 9 10 11 [1] 3 4 5 6 7 8 9 10 11 12 [1] 4 5 6 7 8 9 10 11 12 13 [1] 5 6 7 8 9 10 11 12 13 14 Or you can use sapply() to hide the loop: > sapply(1:5,
2014 Nov 22
0
R string comparisons may vary with platform (plain text)
On 22/11/2014, 2:59 PM, Stuart Ambler wrote: > A colleague?s R program behaved differently when I ran it, and we thought > we traced it probably to different results from string comparisons as > below, with different R versions. However the platforms also differed. A > friend ran it on a few machines and found that the comparison behavior > didn?t correlate with R version, but
2014 Nov 23
0
R string comparisons may vary with platform (plain text)
> On 23 Nov 2014, at 01:05 , Henrik Bengtsson <hb at biostat.ucsf.edu> wrote: > > On Sat, Nov 22, 2014 at 12:42 PM, Duncan Murdoch > <murdoch.duncan at gmail.com> wrote: >> On 22/11/2014, 2:59 PM, Stuart Ambler wrote: >>> A colleague?s R program behaved differently when I ran it, and we thought >>> we traced it probably to different results from
2004 Aug 03
1
How does R vary from SAS?
Hello I have to show that R has more functionality than SAS for MonteCarlo type exercises involving matrix algebra. As I has little experience with SAS is anyone able to help. I have a model written in R but the IT world in this company is not familiar with R and wants to use something like SAS. thanks
2005 Jun 02
1
Re: Reboots -- run-levels 2-5 vary wildly ...
From: Rodrigo Barbosa <rodrigob at suespammers.org> > rcS.d is not a runlevel. It is the equivalent of rc.sysinit on other > distributions/flavors or, should I say, and expansion of that idea. Correct, that's why I said "before" the run-levels at boot. But you still need to know about it. > 0 - Halt > 1 - Single User > 2 - Multi User (No NFS) > 3 - Multi
2009 Jul 28
2
vary the parameters for a function
How I can vary the parameters for a function? I have a function with 5 parameters I want to turn the function for a range of numbers for one of these parameters!! i want to have in the end the value of the function in the different cas of one of the paramter (the others paramters are fixes!!) thank you for your help [[alternative HTML version deleted]]
2014 Nov 23
0
R string comparisons may vary with platform (plain text)
For many scientific applications one is really dealing with ASCII characters and LC_COLLATE="C", even if the user is running in non-C locales. What robust approaches (if any?) are available to write code that sorts in a locale-independent way? The Note in ?Sys.setlocale is not overly optimistic about setting the locale within a session. Martin Morgan On 11/23/2014 03:44 AM, Prof