Displaying 14 results from an estimated 14 matches for "dpf".
Did you mean:
dp
2006 Mar 21
0
wine and Mankind (the one from www.mankind.net) - possible networking or file creation problem
...e:RtlGetFullPathName_U (L"C:\\Programme\\Mankind\
\Mankind/Mankind.npr" 520 0x7ca7def0 (nil))
warn:file:wine_nt_to_unix_file_name L"Mankind.npr" not found in
$HOME/.wine/dosdevices/c:/Programme/Mankind/Mankind
trace:file:CreateFileW L"C:\\Programme\\Mankind\\Mankind/Mankind.dpf"
GENERIC_READ FILE_SHARE_READ FILE_SHARE_WRITE creation 3 attributes
0x80
trace:file:RtlDosPathNameToNtPathName_U (L"C:\\Programme\\Mankind\
\Mankind/Mankind.dpf",0x7ca7ca7c,(nil),(nil))
trace:file:RtlGetFullPathName_U (L"C:\\Programme\\Mankind\
\Mankind/Mankind.dpf" 520 0...
2007 Jun 26
1
A really simple data manipulation example
...le rows per patient , with lab
sodium measurements. It has columns: PATIENT_ID, VISIT_NUM, and
SODIUM.
DEMO is a dataset with one row per patient, with demographic data.
It has columns: PATIENT_ID, GENDER.
Here's a simple example, the following paragraph of code is a
data processing function (dpf) :
inlist LABRESULTS DEMO ;
mergeby PATIENT_ID ;
if (SODIUM == -9) SODIUM = NULL ;
if (VISIT_NUM != 2) deleterow ;
select AVERAGE_SODIUM = avg(SODIUM) by GENDER ;
sendoff(RESULTS_DATASET) GENDER AVERAGE_SODIUM ;
turnoff; // just means end-of-paragraph , version 1.0 won't need this.
Can...
2004 Aug 24
2
Compiling Samba 3.0.6 on FreeBSD 5.2.1
...for the system it doesn't matter.
Has anybody an idea?
Greetings
Holger
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (MingW32)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iD8DBQFBKzPwO0QDuZMdP0sRAuBOAJ9p/Agpt71X3ucm+YZ2NGcBFLUwtACfUPee
Cng6M7iTC7BWM166Dw4Jv2o=
=DPf/
-----END PGP SIGNATURE-----
2005 Feb 28
2
A problem about outer()
...(sx==s)&(ag==a)&(ho==h))
> (function(x,y)dp(1,x,y))(2,3)
[1] NaN
> (function(x,y)dp(0,x,y))(27,52)
[1] NaN
> dpm <- outer(ag,ho,function(x,y)dp(1,x,y))
Error in outer(ag, ho, function(x, y) dp(1, x, y)) :
dim<- : dims [product 100] do not match the length of object [1]
> dpf <- outer(ag,ho,function(x,y)dp(0,x,y))
Error in outer(ag, ho, function(x, y) dp(0, x, y)) :
dim<- : dims [product 100] do not match the length of object [1]
>
-------------------------------------------------------------------------------------------------------------------
Thanks very...
2006 Mar 05
1
Can log into the mailbox from Soft-phone , but not from Hardware Phone
...le to login to the mail box using soft-phone for the
same users
Has anyone faced this kind of problems for mail
? Can log into the mailbox from Soft-phone , but not
from Hardware Phone ?
I am using hardware phone from grandstream "Budge
Tone
-100 "
and another D-Link phone DPF-140S
Would like to get feed-back
Thanks
Joseph John
___________________________________________________________
To help you stay safe and secure online, we've developed the all new Yahoo! Secur...
2002 Dec 04
1
My first rsync experience
...a 'rsync servername::www .' it produces the following
out put:
rsync: connection unexpectedly closed (0 bytes read so far)
rsync error: error in rsync protocol data stream (code 12) at io.c(150)
Can anyone help?
-----------------------------------------
David Flood
Systems Administrator
dpf@comp.rgu.ac.uk
Tel: +44 (0)1224 262774
The Robert Gordon University
School of Computing
St. Andrews Street
Aberdeen
-----------------------------------------
2012 Apr 28
1
Unable to install rggobi in R 2.15
.... I downloaded the source for RGgobi and extracted it to a folder.
Then I tried compiling and installing with the following command and got an error message:
--------------------------------------------------------------------------------------------
D:\Work\tmp>R CMD INSTALL --build "D:\\DPF\\Rggobi\\rggobi"
* installing to library 'C:/Program Files/R/R-2.15.0/library'
* installing *source* package 'rggobi' ...
** libs
cygwin warning:
MS-DOS style path detected: C:/PROGRA~1/R/R-215~1.0/etc/i386/Makeconf
Preferred POSIX equivalent is: /cygdrive/c/PROGRA~1/R/R-21...
2012 Apr 27
1
Unable to compile & install rggobi
...rce for RGgobi and extracted it to a folder.
Then I tried compiling and installing with the following command and got an error message:
------------------------------------------------------------------------------------------------------------------
D:\Work\tmp>R CMD INSTALL --build "D:\\DPF\\Rggobi\\rggobi"
* installing to library 'C:/Program Files/R/R-2.15.0/library'
* installing *source* package 'rggobi' ...
** libs
cygwin warning:
MS-DOS style path detected: C:/PROGRA~1/R/R-215~1.0/etc/i386/Makeconf
Preferred POSIX equivalent is: /cygdrive/c/PROGRA~1/R/R-21...
2011 Aug 29
2
Saving a graph
I read somewhere that vector graphics such as eps or dpf are more favorable
than alternatives (jpeg, bmp or png) for publication because vector graphics
scale properly when enlarged. However, my problem is that the file generated
from a graph of fixed size is too large (in the order of 10MB) because of
many data points in multiple scatterplots. Any sugge...
2013 Apr 18
0
Splitting vector
Hi,
Try:
vec1<- "mue#d/sjbijk at ruepvnvbnceiicrpgxkgcyl@keduhqvqi/ubudvxopddpfddgitrynzshzdcwgneyffrkpbxwilwqngrsals#geqmtkcpkp/qecgdfa#uag"
library(seqinr)
?res<-lapply(0:4,function(i) lapply(2:5,function(j) splitseq(s2c(gsub("[#@/]","",vec1)),word=j,frame=i)))
#or
library(stringr)
res1<-lapply(0:4,function(i) lapply(2:5,function(j) splitseq(...
2009 Mar 12
1
Is there a way to have link_to_remote execute two actions?
I''d like users to click on a link with modifies the current page and
opens a new external url in a new window. I''ve got the link_to_remote
working fine and the current page is updated. But how to I open a url
in a new window?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2006 May 01
1
timeout_remove and "Timeout leak" problems
Hello,
I have run into troubles trying to jump from 1.0alpha5 (basically
running smoothly) to 1.0beta5 and/or beta7.
I am seeing errors such as the following set for nearly every user.
dovecot: May 01 16:21:02 Info: IMAP(joeuser): Disconnected: Logged out
dovecot: May 01 16:21:02 Error: IMAP(joeuser): file ioloop.c: line 153 (timeout_remove): assertion failed: (*timeout != NULL)
dovecot: May
2006 Jan 31
1
default_mail_env auto-detect woes for maildir users
Hello--
I am a fairly new dovecot user and have run into a problem.
I am running dovecot 1.0alpha5 (built from source) on a Fedora Core 1 machine.
The system has about 400 users with over 80 IMAP users, and we have
just transitioned from UW-IMAP. Thus all users are currently still mbox
users.
I would like to transition them to maildir users (this was the main point for
me switching servers), and
2004 Jan 22
0
Newbie to 3.0.1 and having problems
I have just upgraded from samba 2.2.7a to 3.0.1. For this upgrade I backed up my old
samba installation, installed the new configuration and copied over the contents of
the private directory which was secrets.tdb and smbpasswd. I ran testparm and
everything seemed fine so I run samba and H drives come back up perfectly.
I think I have 3 issues:
1)
I noticed in /var/adm/messages that entries