Displaying 10 results from an estimated 10 matches for "aphp".
Did you mean:
apap
2017 Jan 20
1
How to handle INT8 data
...6, William Dunlap ?crivait :
> If these are identifiers, store them as strings. If not, what sort of
> calculations do you plan on doing with them?
> Bill Dunlap
> TIBCO Software
> wdunlap tibco.com
>
>
> On Fri, Jan 20, 2017 at 6:33 AM, Nicolas Paris <nicolas.paris at aphp.fr> wrote:
> > Hello r users,
> >
> > I have to deal with int8 data with R. AFAIK R does only handle int4
> > with `as.integer` function [1]. I wonder:
> > 1. what is the better approach to handle int8 ? `as.character` ?
> > `as.numeric` ?
> > 2. is the...
2017 Jan 20
4
How to handle INT8 data
...it the dataset ?
Le 20 janv. 2017 ? 18h29, Murray Stokely ?crivait :
> 2^53 == 2^53+1
> TRUE
>
> Which makes joining or grouping data sets with 64 bit identifiers problematic.
>
> Murray (mobile)
>
> On Jan 20, 2017 9:15 AM, "Nicolas Paris" <nicolas.paris at aphp.fr> wrote:
>
> Le 20 janv. 2017 ? 18h09, Murray Stokely ?crivait :
> > The lack of 64 bit integer support causes lots of problems when dealing
> with
> > certain types of data where the loss of precision from coercing to 53
> bits with
> > d...
2017 Jan 20
2
How to handle INT8 data
...le number you'll ever have is < INT_MAX), you could store them
> as factors. You get the speed of integers but the labeling of full "precision"
> strings. Factors are fast for joins.
>
> ~G
>
> On Fri, Jan 20, 2017 at 9:47 AM, Nicolas Paris <nicolas.paris at aphp.fr> wrote:
>
> Well I definitely cannot use them as numeric because join is the main
> reason of those identifiers.
>
> About int64 and bit64 packages, it's not a solution, because I am
> releasing a dataset for external users. I cannot ask them to install...
2017 Jan 20
9
How to handle INT8 data
Hello r users,
I have to deal with int8 data with R. AFAIK R does only handle int4
with `as.integer` function [1]. I wonder:
1. what is the better approach to handle int8 ? `as.character` ?
`as.numeric` ?
2. is there any plan to handle int8 in the future ? As you might know,
int4 is to small to deal with earth population right now.
Thanks for you ideas,
int8 eg:
human_id
2004 Nov 10
1
Samba BDC with LDAP support
...ve = Z:
dns proxy = yes
local master = yes
os level = 128
username map = /etc/samba/smbusers
encrypt passwords = yes
socket options = TCP_NODELAY SO_RCVBUF=8192
SO_SNDBUF=8192
## LDAP ## Auth.
ldap ssl = no
ldap passwd sync = yes
ldap delete dn = yes
ldap admin dn = cn=Manager,dc=tnn,dc=aphp,dc=fr
ldap user suffix = ou=Users
ldap machine suffix = ou=Users
ldap group suffix = ou=Groups
ldap suffix = dc=tnn,dc=aphp,dc=fr
ldap idmap suffix = ou=Idmap
idmap backend = ldapsam:ldap://lys
passdb backend = ldapsam:ldap://lys, guest
## WINS Server
wins support = yes
name resolve orde...
2017 Jan 20
0
How to handle INT8 data
...y of them
(eg the total possible number you'll ever have is < INT_MAX), you could
store them as factors. You get the speed of integers but the labeling of
full "precision" strings. Factors are fast for joins.
~G
On Fri, Jan 20, 2017 at 9:47 AM, Nicolas Paris <nicolas.paris at aphp.fr>
wrote:
> Well I definitely cannot use them as numeric because join is the main
> reason of those identifiers.
>
> About int64 and bit64 packages, it's not a solution, because I am
> releasing a dataset for external users. I cannot ask them to install a
> package in ord...
2017 Jan 20
0
How to handle INT8 data
2^53 == 2^53+1
TRUE
Which makes joining or grouping data sets with 64 bit identifiers
problematic.
Murray (mobile)
On Jan 20, 2017 9:15 AM, "Nicolas Paris" <nicolas.paris at aphp.fr> wrote:
Le 20 janv. 2017 ? 18h09, Murray Stokely ?crivait :
> The lack of 64 bit integer support causes lots of problems when dealing
with
> certain types of data where the loss of precision from coercing to 53
bits with
> double is unacceptable.
Hello Murray,
Do you mean, by eg. -...
2017 Jan 20
0
How to handle INT8 data
...t-
integer-that-can-be-stored-in-a-double).
This is how long vector indices are (currently) implemented in R. If it's
good enough for indices it's probably good enough for whatever you need
them for.
Hope that helps.
~G
On Fri, Jan 20, 2017 at 6:33 AM, Nicolas Paris <nicolas.paris at aphp.fr>
wrote:
> Hello r users,
>
> I have to deal with int8 data with R. AFAIK R does only handle int4
> with `as.integer` function [1]. I wonder:
> 1. what is the better approach to handle int8 ? `as.character` ?
> `as.numeric` ?
> 2. is there any plan to handle int8 in the...
2017 Jan 20
0
How to handle INT8 data
...st-integer-that-can-be-stored-in-a-double).
This is how long vector indices are (currently) implemented in R. If it's
good enough for indices it's probably good enough for whatever you need
them for.
Hope that helps.
~G
On Fri, Jan 20, 2017 at 6:33 AM, Nicolas Paris <nicolas.paris at aphp.fr>
wrote:
> Hello r users,
>
> I have to deal with int8 data with R. AFAIK R does only handle int4
> with `as.integer` function [1]. I wonder:
> 1. what is the better approach to handle int8 ? `as.character` ?
> `as.numeric` ?
> 2. is there any plan to handle int8 in the...
2017 Jan 21
1
How to handle INT8 data
...t; This is how long vector indices are (currently) implemented in R. If it's
> good enough for indices it's probably good enough for whatever you need
> them for.
>
> Hope that helps.
>
> ~G
>
>
> On Fri, Jan 20, 2017 at 6:33 AM, Nicolas Paris <nicolas.paris at aphp.fr>
> wrote:
>
>> Hello r users,
>>
>> I have to deal with int8 data with R. AFAIK R does only handle int4
>> with `as.integer` function [1]. I wonder:
>> 1. what is the better approach to handle int8 ? `as.character` ?
>> `as.numeric` ?
>> 2. is...