search for: davidep

Displaying 8 results from an estimated 8 matches for "davidep".

Did you mean: davide
2016 Dec 20
2
ldaps:// referrals from DC
...could configure STARTTLS and bind over ldap:// scheme, or disable referrals on the client side ...but a question remain: is the Samba DC response "correct"? I'd expect both AD implementations do the same. This is an ldapsearch command output against Samba DC: ldapsearch -D 'davidep at neth.eu' -w '*****' -H ldaps://neth.eu -b dc=neth,dc=eu '(objectClass=user)' ... # search reference ref: ldap://neth.eu/CN=Configuration,DC=neth,DC=eu # search reference ref: ldap://neth.eu/DC=DomainDnsZones,DC=neth,DC=eu # search reference ref: ldap://...
2011 Oct 19
4
Using SQL "IN" with RJDBC or RMySQL
...it may be just a matter of string massaging, but I'm not certain. I've tried to build the query using sprintf statements with no luck. I could not get RMySQL to do it either. Any suggestions? thank you, -david library(RJDBC) drv <- JDBC("com.mysql.jdbc.Driver", "/home/davideps/Software/extlibs/mysql-connector-java-5.0.7-bin.jar",identifier.quote="`") conn <- dbConnect(drv, "jdbc:mysql://localhost/civicrm", "userid","pass") org_table=dbGetQuery(conn,"SELECT id,organization_name FROM civicrm_contact WHERE contact_type...
2016 Dec 20
2
ldaps:// referrals from DC
...e reason I ask here is: MS DC gives a different response, and looks more client-friendly than the Samba DC one.  Should the Samba DC return "ldaps://" scheme in referral, too? As said, I'm not an LDAP expert and don't know what is the correct referral URI. -- Davide Principi #davidep | @davideprincipi
2011 Dec 03
1
side-by-side map with different geographies using spplot
Hello, I want to create side-by-side maps of similar attribute data in two different cities using a single legend. To simply display side-by-side census block group boundary (non-thematic) maps for Minneapolis & Cleveland I do the following: library(rgdal) library(sp) Minneapolis=readOGR("../Minneapolis/Census/2010/Census_BlockGroup_GEO/","tl_2010_27053_bg10")
2013 Mar 09
1
lmer (LME4) and survey standard error
Hello, I am using lmer (LME4) to build a model from data for 19 different neighborhoods drawn, in part, from the American Communities Survey (ACS). The ACS data is static while other variables change over the five years under investigation. I am new to mixed effects models and was hoping that someone could suggest a way to include the ACS standard error for each covariate into the model. I
2011 Dec 26
2
Recoding multiple TRUE/FALSE columns into a single list of TRUE columns
Hi everyone, I need to recode multiple columns in a dataframe into a single column in a variety of different ways. Often the values will be TRUE/FALSE and I want a list of the columns that are true as in the Result column below: P1 P2 P3 P4 Result 1 0 0 1 1 P3,P4 2 0 1 1 1 P2,P3,P4 3 1 0 0 0 P1 4 0 0 0 0 NA 5 1 1 1
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
2012 Apr 01
1
trouble with small multiples on a date variable
Hello, I am loading a DBF file into R via JGR and am having trouble creating small multiple histograms on a date variable. Hist() handles the variable correctly. But I've been unable to work with lattice or ggplot2 despite trying format() and as.POSIXct(). Dates are in the format "2010-05-15" and the grouping variable is categorical. I'd appreciate it if someone would provide an