similar to: Binning of integers with hist() function odd results (P (PR#14047)

Displaying 20 results from an estimated 1000 matches similar to: "Binning of integers with hist() function odd results (P (PR#14047)"

2009 Nov 07
0
Binning of integers with hist() function odd results (P (PR#14048)
Hi, Thank you for responding quickly and explaining the behavior. By adding "include.lowest=TRUE,right=FALSE" and manually including breaks that resolved the simple test case. Next I updated my more complex data set, which already had manually defined breaks, and that resolved my issues there too. I have now gone in and updated all my functions which use hist() so I
2009 Nov 06
2
Binning of integers with hist() function odd results (PR#14046)
Full_Name: Gerald Guglielmo Version: 2.8.1 (2008-12-22) OS: OSX Leopard Submission from: (NULL) (131.225.103.35) When I attempt to use the hist() function to bin integers the behavior seems very odd as the bin boundary seems inconsistent across the various bins. For some bins the upper boundary includes the next integer value, while in others it does not. If I add 0.1 to every value, then the
2016 Feb 01
2
Fail to join a DC to a Domain
On 01/30/2016 01:52 PM, Rowland penny wrote: > Your problems seem to start here: > > Server ldap/DC01.MYDOMAIN.NET at MYDOMAIN.NET is not registered with our > KDC: Miscellaneous failure (see text): Server > (ldap/DC01.MYDOMAIN.NET at MYDOMAIN.NET) unknown > > what is the ipaddress of your first AD DC ? > can you post /etc/resolv.conf, /etc/hosts and /etc/krb5.conf >
2006 Jan 05
0
roaming profiles unknown issue
when I try to log on in my samba+ldap pdc sometimes Xp tells me that it doesn't find "the network path to the profile" but I can see all the shares including my profiles if I browse it after loggin in. The drawback is that I can login but my profile isn't updated. Is this a common issue, do you have any advices? Thanks -- Guglielmo Dapavo
2015 Apr 24
0
Auth-worker, Unknown User
On 04/24/2015 03:55 PM, Stephen R Guglielmo wrote: > Hi list, > > I'm running Debian Jessie (8). I have Postfix and Dovecot working > successfully. I attempted to setup LMTP in order to enable sieve > support, but it seems I was not successful. Dovecot version 2.2.13. > > Postfix accepts an incoming test mail I sent, then tries to deliver it > to Dovecot via LMTP:
2006 Jan 11
1
authenticating PDC against itself
I need to let squid authenticate against the domain controller but both samba and squid are running on the same machine, but I cannot get to use ntlm. Is it possible do join to the PDC the same machine running the PDC with: net join -S DOMAIN -U Administrator ?. wbinfo -p : Ping to winbindd succeeded on fd 4 wbinfo -g --domain=DOMAIN : Error looking up domain groups wbinfo -a alphac%alphac
2010 Jun 16
0
Binning function in R
Is there some function in R that does what Interactive Grouping node in SAS Enterprise Miner does? It makes variable binning using WOE(weight of evidence) for scoring modeling. I’ve found 3 binning function in R : rattle::binning http://finzi.psych.upenn.edu/R/library/rattle/html/binning.html ks::binning http://finzi.psych.upenn.edu/R/library/ks/html/binning.html sm ::binning
2011 Jan 21
1
3D Binning
I am trying to do binning on three variables (3d binning). The bin boundaries are specified by the user separately for each variable. I used the bin2 function in the 'ash' package for 2d binning that involves only two variables but didn't any package for similar binning with three variables. Are there any packages or codes available for 3d binning?? Thank you. -- View this message in
2009 Sep 10
1
Complex binning?
Hi, I need to do some binning which to date I've done just writing subset commands. I'm now wondering if there are any good packages that have some good pre-designed functions for multi-variable binning using say 4 or 5 variables, sometimes binning on 3 or more levels of each variable, and then supporting some sort of reporting mechanism to tell me how many data points fell into each
2011 Jul 12
1
High density scatter plot with logarithmic binning
How can perform logarithmic binning in the scatterplot? I could only take the log of the variables and plot them, but I am sure that is not the way. I have a very huge data, and would want to plot those high density scatterplots and code then with different colors for the bins/density. -- View this message in context:
2008 Jun 16
0
Constrained Optimized Binning Procedure....implementation help/idea needed.
Dear R Helpers, At the moment I'm working on the project to implement "optimal binning" function. It will be primarily used as a tool for logistic regression..... something very similar to http://www2.sas.com/proceedings/forum2008/153-2008.pdf* *but applied in diferent problem space...* *The problem might be descibed as finding optimal binning which will satisfy all of the rules
2012 Apr 04
0
crosstabs and histograms with flexible binning of dates
Hi, First, thank you to Duncan Mackay for getting me started processing dates with R. Unfortunately, I need to do a little more than I initially expected. I have 5K lines of data that look like this: ID AREA DATE 0001 Center 2010-10-15 0002 Center 2010-01-02 0003 NorthWest 2010-02-05 0004 SouthWest 2010-05-11 I would like to create a script to create crosstabs like
1997 Dec 23
0
R-beta: bug in hist() (0.60/0.61)
I discovered a bug in hist(). Try the following: x<-c(-5,-4,-4,-4,-3,-3,-3,-3,-2,-2,0,0,0,0,1,1,1,3,3,5,6) # Note that sum(x)<0: sum(x) # [1] -13 hist(x) # looks ok hist(x,freq=F) # negative bars !! # and finally this gives not 1: sum(hist(x,plot=F)$rel.freqs) # [1] -0.8076923 The reason is, that "sum(x)" is used instead of "length(x)" in the following line near
2016 Jan 30
2
Fail to join a DC to a Domain
Hi, me and my coworkers are trying to migrate a Samba 3 domain to a Samba4 one. As for now we did a classicupgrade and imported all the ldap entry to a DC following the guide without problems following the doc https://wiki.samba.org/index.php/Migrating_a_Samba_NT4_domain_to_a_Samba_AD_domain_(classic_upgrade) Now as we try to join another DC following this guide
2006 Aug 25
1
How to get back POSIXct format after calculating with hist() results
Hi, I have a casting/formatting question on hist.POSIXt: The histogram plot from POSIXct works perfect (with help of Prof. Ripley -thanks!). When processing the hist(plot=FALSE) output and then plotting the results over the x-axis (bins) coming from hist(), I lose the date/time labels, getting instead integers displayed. Trying to cast the $breaks with as.POSIXct gives silly results with
2007 Nov 09
0
Automated Binning for building predictive models
Hello, Currently I am using R for building a logistic model using numerical and nominal data as predictors. Before doing the regression, the predictors are grouped. The groups I determine manually by trying to maximize the information value (which is an indicator for the discriminatory power of the variable) under the condition that enough data are within each group (approx. 5%). Is there a
2010 May 13
2
Simple question on binning data
Hello everyone, I have a data set, and I need to bin my data using a bin width of say g(n). Would anyone be willing to tell me how to do this in R? Thanks -- View this message in context: http://r.789695.n4.nabble.com/Simple-question-on-binning-data-tp2202644p2202644.html Sent from the R help mailing list archive at Nabble.com.
2011 Mar 13
1
Binning data
Hello I have a large series of data value -- effectivly say the point across the x-axis where a pitch crosses home plate. What I want to do is find the % of ground balls at various distances across home plate. I therefore need to 'bin' the two data sets I have - plate location for ground balls and plate location for all other outcomes. Question is how can I set up a series of bins
2011 Dec 17
1
Binning a 2 column matrix by avarages of rows.
Newbie here. Many apologies in advance for using the incorrect lingo. I'm new to statistics and VERY new to R. I have a "nx2" matrix , I want to sort the values based on the average of 2 columns and put k lowest (or highest) values in bin1, second k high/low values in bin2, and so on (bins would be of the same dimensions). I should also know what the first index (or position) of
2007 Oct 12
2
Automating binning for chisq.test()
The standard chisq.test() and fisher.test() functions, when applied to two distributions (to determine whether the same underlying distribution applies to both) requires one to pre-bin the distributions. Is there a library function (either built-in or in a package) that acts more like the ks.test() function, in that one can simply pass the two distributions and have it do the necessary binning as