Displaying 20 results from an estimated 200 matches similar to: "dataframes from a function"
2006 Mar 27
1
Missing Argument in optim()
Hello everybody,
i already searched the archieves, but i still don't know what is wrong
in my implementation, mybe anybody coud give me some advice
ll1<-function(rho,theta,beta1,beta2,beta3,beta4,t,Szenariosw5,Testfaellew5,X1,X2)
{
n<-length(t)
t<-cumsum(t)
tn<-t[length(t)]
Szenn<-Szenariosw5[length(Szenariosw5)]
2003 Apr 01
1
LOG_AUTHPRIV and the default syslog.conf
Hello,
Some time ago I wrote PR conf/48170, which discussed
the following problem:
Syslog messages of facility LOG_AUTHPRIV and priority LOG_NOTICE
(or higher) are sent by default to the world-readable log file
/var/log/messages. That seems unacceptable since the facility
LOG_AUTHPRIV is for hiding sensitive log messages inside a protected
file, e.g., /var/log/auth.log.
For example, login(1)
2017 Feb 28
2
Dict protocol changes string
On 09/23/2016 08:05 AM, Aki Tuomi wrote:
> On 29.07.2016 15:35, Nagy, Attila wrote:
>> I use pass and userdb with dict protocol in a similar way:
>>
>> key passdb {
>> key = passdb^MAuth-User: %u^MAuth-Pass: %w^MAuth-Protocol:
>> %s^MClient-IP: %r
>> format = json
>> }
>>
>> (^M is an \r character, inserted with vi CTRL-v + enter)
2009 Jan 14
1
referring to calls in functions
The first program generates an error message and does not execute the
regression of y on x.
x<-1:10;
y<-rnorm(10) + x;
prac <- function( model, wghts ){ lm(model, weights = wghts) }
prac(model = y~x, wghts = rep(1, 10))
But the next program works:
x<-1:10;
y<-rnorm(10) + x;
prac <- function( y, x, wghts ){ lm(y~x,
2011 Mar 21
1
2.0.11 segfault while can't access submission_host
15-lda.conf:
submission_host = 192.168.m.n:587
2011-03-21T14:43:49+01:00 prac/p-prac dovecot: [ID 583609 mail.debug]
lmtp(12354, user at us.edu.pl): Debug: mcQ1NitVh01CMAAAuqlTtQ: sieve:
executing script from /mails/sieve/user at us.edu.pl.svbin
2011-03-21T14:43:49+01:00 prac/p-prac dovecot: [ID 583609 mail.error]
lmtp(12354, user at us.edu.pl): Error: smtp(192.168.m.n:587): RCPT TO
failed:
2017 Aug 03
2
pam auth problem
> What is in the pam.d/dovecot file? (Remember to strip passwords if
> included)
# cat /etc/pam.d/dovecot
passdb {
driver = pam
# args = failure_show_msg=yes
# args = max_requests=12
args = %s
}
and /etc/pam.d/{imap,pop3} were untouched; both as follows
#
# $FreeBSD: releng/10.3/etc/pam.d/pop3 170771 2007-06-15 11:33:13Z yar $
#
# PAM configuration for the "pop3" service
2009 Sep 15
3
dCAP Exam
Hi folks,
Is there anywhere I can possibly get a model of the exam itself, maybe
possible scenarios for the prac, etc?
To people who have done the exam....any helpful hints ?
Thanks,
2006 Apr 08
3
[Totally OT] CSS Best Prac. Rails Apps
I''ve used Verdana heavily in many of my sites. My graphics designer likes it
and so do my clients. There is a well-reasoned discussion that goes
something like:
- Verdana is bigger than any other font in default size
- If a user doesn''t have Verdana, what they see may be way smaller than
designed
- Ergo, don''t use Verdana
What is everyone else doing? 80+% of my site
2009 Sep 01
3
assertion failed while using sieve
Hi,
there is a line in TODO: "- sieve-cmu.c crash: i_assert(buf->used - 1 ==
part->body_size.physical_size); ". Yes, we've really seen this crash.
Therefore we upgraded to dovecot-1.2.3 with dovecot-1.2-sieve-0.1.11 in
order to use sieve plugin (i.e. not cmu-sieve). We use Solaris 10 on Sun
servers, we don't use NFS.
However, unfortunately, dovecot with sieve crashes
2004 Jan 22
1
log messages to a specific file
I am trying to configure syslog.conf to send messages from one of my hosts
to a select file for that host. The host is currently sending messages to
the syslog server and they are being logged but I would like to have all
the messages from this host go to a separate file. FreeBSD 4.9-RELEASE
# $FreeBSD: src/etc/syslog.conf,v 1.13.2.4 2003/05/12 13:59:23 yar Exp $
#
# Spaces ARE valid field
2017 Apr 06
0
[PATCH v6 PATCH 7/7] yara_scan: added API tests
Signed-off-by: Matteo Cafasso <noxdafox@gmail.com>
---
configure.ac | 1 +
tests/yara/Makefile.am | 26 +++++++++++++++++++
tests/yara/test-yara-scan.sh | 61 ++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 88 insertions(+)
create mode 100644 tests/yara/Makefile.am
create mode 100755 tests/yara/test-yara-scan.sh
diff --git a/configure.ac
2017 Apr 04
0
[PATCH v5 7/7] yara_scan: added API tests
Signed-off-by: Matteo Cafasso <noxdafox@gmail.com>
---
configure.ac | 1 +
tests/yara/Makefile.am | 26 ++++++++++++++++
tests/yara/test-yara-scan.sh | 72 ++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 99 insertions(+)
create mode 100644 tests/yara/Makefile.am
create mode 100755 tests/yara/test-yara-scan.sh
diff --git a/configure.ac b/configure.ac
2006 Mar 02
1
Failing to understand getrusage()
I'm failing to understand how getrusage() works, which is a bit perplexing,
because it doesn't seem like it would be terribly complicated.
I've attached the code. My aim is to verify that I can use getrusage() to
do (admittedly crude) instrumentation of which functions in my program are
allocating lots of memory[1]. So I figure I can call getrusage() at various
points and look at
2016 Jul 29
2
Dict protocol changes string
Hi,
I use pass and userdb with dict protocol in a similar way:
key passdb {
key = passdb^MAuth-User: %u^MAuth-Pass: %w^MAuth-Protocol:
%s^MClient-IP: %r
format = json
}
(^M is an \r character, inserted with vi CTRL-v + enter)
Until 2.2.24 this has worked, but 2.2.25 seems to convert that ASCII 13
into an ASCII 1 and an "r".
Python printout from what I get with 2.2.25:
2006 Mar 30
3
Is mount_smbfs broken in 6.1-PRERELEASE?
Anyone know if mount_smbfs is broken in 6.1, I'm trying to run this:
"mount_smbfs -I 192.168.1.2 //nbritton@192.168.1.2/music2 /mnt/network/music/"
And then it asks for my password, I type it in, and then I get this error:
"mount_smbfs: unable to open connection: syserr = Authentication error"
I've had this same problem on another 6.1 box too... I can run this
same
2009 Dec 11
2
sip realtime question
Hi everybody,
First of all i am sorry my English :)
i want to configure my asterisk server as a sip server that stores sip users in the mysql database connecting directly over odbc driver. My odbc configuration works as below
[root at ao042 asterisk]# isql -v asterisk
+---------------------------------------+
| Connected! |
| |
|
2005 Sep 07
2
ee using 99% cpu after user ssh session terminates abnormaly
Recently i have been using a dialup 56k account to access the net
and have noticed that when my ssh session times out and I am editing
a file in ` ee ' the system goes to 99% cpu usage and stays like
this till the pid is killed.
This is a standard user account (not root/su)
Would a user be able to create a denial of service condition
on the remote system using this bug?
(sorry if this is
2017 Aug 11
2
Package sqldf in R and dates manipulation
Dear all,
I recently read the book " R data preperation and manipulation using sqldf package" by Djoni Darmawikarta
However, I have a problem with manipulation of dates using this package, I do not get the expected results. Do I need to install some packages to be able to subset the data by dates in sqldf?
I am not getting Djoni Darmawikarta email address.
Please see the practice
2017 Aug 11
0
Package sqldf in R and dates manipulation
See FAQ #4 on the sqldf github home page.
On Fri, Aug 11, 2017 at 9:21 AM, Mangalani Peter Makananisa
<pmakananisa at sars.gov.za> wrote:
> Dear all,
>
> I recently read the book " R data preperation and manipulation using sqldf package" by Djoni Darmawikarta
> However, I have a problem with manipulation of dates using this package, I do not get the expected results.
2016 Sep 23
0
Dict protocol changes string
On 29.07.2016 15:35, Nagy, Attila wrote:
> Hi,
>
> I use pass and userdb with dict protocol in a similar way:
>
> key passdb {
> key = passdb^MAuth-User: %u^MAuth-Pass: %w^MAuth-Protocol:
> %s^MClient-IP: %r
> format = json
> }
>
> (^M is an \r character, inserted with vi CTRL-v + enter)
>
> Until 2.2.24 this has worked, but 2.2.25 seems to convert that