Displaying 20 results from an estimated 2000 matches similar to: "Error Message (PR#11602)"
2003 Nov 02
3
barchart in lattice
Dear all,
I have two factors 'country' and 'status' which I would like to plot via barchart (lattice).
'status' consist of three different levels and should be the grouping variable, i.e. there
should be drawn three different panels and within each panel a barchart of 'country'.
barchart(daten$COUNTRY|daten$STATUS),
2009 Sep 01
1
Cannot connect from Windows 2000 to Samba 3.4.0 on Li nux ....
Some default setting have changed. Use: testparm -v from your various
versions of samba to detect which parameters may be causing you issues.
------------------------------------------------------------------------
Tony Hoover, Network Administrator
KSU - Salina, College of Technology and Aviation
(785) 826-2660
"Don't Blend in..."
2024 Jun 09
2
Format
HI all,
My
I am trying to convert character date (mm/dd/yy) to YYYY-mm-dd date
format in one of the columns of my data file.
The first few lines of the data file looks like as follow
head(Atest,10);dim(Atest)
ddate
1 19/08/21
2 30/04/18
3 28/08/21
4 11/10/21
5 07/09/21
6 15/08/21
7 03/09/21
8 23/07/18
9 17/08/20
10 23/09/20
[1] 1270076 1
I am using the following
2019 Aug 10
0
samba-tool ou create "OU=del-ou, dc=atest, dc=com" fails with /var/lib/samba/private/sam.ldb: No such file or directory
On 10/08/2019 13:14, amitkuma--- via samba wrote:
> Hello,
>
> I am trying to use samba-tool to create OU on active directory.
>
> 1. Joined to domain.
> # net ads join -U <>
>
> 2. Listed GPO's on domain to check samba-tool script can pull the GPOs.
> # samba-tool gpo listall
> GPO : <>
> display name : test-Computers-GPO-1
> path
2003 Nov 04
2
line breaks in recode
Dear all,
it seems to be that 'recode' can't handle any line breaks in its code.
The following command causes no problem:
datameta$smpid.r <-
recode(datameta$smpid,"c(101,25,167,45,75)=25;c(104,51)=51")
But if I type ...
datameta$smpid.r <-recode(datameta$smpid,
"c(101,25,167,45,75)=25;
c(104,51)=51")
... the result is a syntax error.
2019 Aug 10
2
samba-tool ou create "OU=del-ou, dc=atest, dc=com" fails with /var/lib/samba/private/sam.ldb: No such file or directory
Hello,
I am trying to use samba-tool to create OU on active directory.
1. Joined to domain.
# net ads join -U <>
2. Listed GPO's on domain to check samba-tool script can pull the GPOs.
# samba-tool gpo listall
GPO : <>
display name : test-Computers-GPO-1
path : \\atest.com\SysVol\atest.com\Policies\<>
dn :
2003 Nov 18
2
Problems installing lattice
Dear all,
I am not able to install the lattice package. After finishing the
installation, I got the following error massage:
-------------------snip---------------------------
Delete downloaded files (y/N)? y
Warning message:
argument `lib' is missing: using /usr/local/lib/R/site-library in:
install.packages("lattice")
> library(lattice)
Error in loadNamespace(i, c(lib.loc,
2004 Feb 20
0
RE: BUG report: win32-process
> -----Original Message-----
> From: Date, Shashank [Non-Employee]
> [mailto:Shashank.Date@mail.sprint.com]
> Sent: Friday, February 20, 2004 11:04 AM
> To: Berger, Daniel
> Cc: phasis@nownuri.net
> Subject: BUG report: win32-process
>
>
> gets does not work in the forked process.
>
> See win32 and cygwin transcripts below:
>
>
2010 Aug 29
1
Feature request: put NewEnvironment and R_NewhashedEnv into API
Hi,
as Seth Falcon in 2006, I also need to create new environments from package C code. Unfortunately, both NewEnvironment and R_NewHashedEnv are not yet part of the public API, if I understand correctly.
Is it planned to add at least one of these functions to the public API in the near future? May I submit a patch? Otherwise I would need to re-implement much of the functionality of R
2006 Aug 23
2
Rename folder bug dovecot-1.0RC6 ?
Dear All
can someone confirm this bug please ?
I am using Thunderbird 1.07, TB 1.5.0.4, Horde/IMP webmail as test clients,
all running on FC4.
Server is 1.0RC6 on CentOS 4 with maildir-sep set to ';'
To reproduce:
In your favourite mail client:
1. Create a top-level mail folder "atest"
2. Rename "atest" to "atest-extra" (basically
2005 Oct 25
0
Beginner question on apply()
Dear all,
I am an beginner with R and I have a question concerning apply(). My problem
is as follows:
I have data on four variables (x1,x2,x3,x4) with missing values for x1 and
x2.
> data[1:9,]
x1 x2 x3 x4
1 NA NA 10 1
2 NA NA 8 3
3 NA NA 13 7
4 9 9 9 9
5 11 14 20 10
6 14 14 14 15
7 6 6 6 8
8 4 4 4 19
9 12 12 12 8
.....
I would like to replace the missing values
2007 Mar 24
2
Two Problems while trying to aggregate a dataframe
Hello!
Given is an Excel-Sheet with actually 11,000 rows and 9 columns. I want
to work with the data in R. The contents are similar to my following
example.
I have a list with ID-number, personal name and two kinds of
loan-values. I want to aggregate the list, that for each person only one
row remains and where the loan-values are added.
First I tried some commands with tapply but had no
2011 Aug 22
2
samba 3.6.0: cannot delete files on shares
Second try via NNTP: ;-)
After updating samba to the new version 3.6.0 on my Linux systems at home
and at work, I found the problem that I could not delete files on my shares.
This did not occur on the home system, but only on the work system, so I
looked for differences between the two. I found that the usage of
non-encrypted passwords triggers the problem. I use this on my work system,
2009 Dec 27
1
gWidgets / RGtk2 - how to change a handler from a toolbar?
I want to assign a default handler to a toolbar button and change the
handler later.
The addhandlerclicked() method does not apply to a gAction Object, I
think...
defHandler <- function(h, ...) print("default")
w <- gwindow()
aTest <- gaction(label="Test", icon="open", handler=defHandler)
tblList = list( test = aTest )
toolBar = gtoolbar(tblList,
2004 Jul 13
1
Synatx Error on start with R --no-save < myfile.R
Dear all!
I wrote my R-code with an editor and loaded it with source("my_file.R").
Everything works fine as expected.
When I try to start my code with:
R --no-save < my_file.R
I do get a synatx error half way through. The version is 1.9.0 on a Linux
system. To start it with R --no-save < my_file.R works on some machines but
on some it doesn't.
Are there any rules
2004 Mar 01
0
RE: win32etc test failure
Yep, I agree. Well, what would you prefer? I handle it for you or you
handle it yourself? I''m tempted to go with the former because, well,
it''s been there for a while now. I can even use strtok to detect if
''\\\\'' is at the beginning of the string and add them only if not found.
I''ll have to take a look at delete user - it worked for add_user,
2016 Sep 23
1
Install Mariadb on Centos 7 fails
At 09:36 AM 9/23/2016, you wrote:
>On 2016-09-22 18:07, david wrote:
> > Folks
> >
> > I'm having problems installing Mariadb in Centos 7.
> >
> >
> > Here's what I did:
> >
> > 0) Become root
> > 1) Make sure that mariadb and mysql are NOT installed.
> > 2) Delete residual libs
> > rm -rf /var/lib/mysq*
>
2005 May 01
1
Samba 3 PDC with ldapsam and login problem
Hi,
<foreword>
I am about to set up Samba 3.0.14a on Linux as PDC wit LDAP backend for
our faculty. However, first tries have only partly been successful.
First I added samba LDAP-Schema attributes to existing account, created
their Samba passwords with smbpasswd and it worked so that normal users
could log in via the windows network neighborhood and use the shares.
But, I couldn't
2004 Mar 01
0
RE: win32etc test failure
Ok - time for me to patch and update the docs! Thanks for the testing!
Dan
-----Original Message-----
From: Date, Shashank [Non-Employee]
[mailto:Shashank.Date@mail.sprint.com]
Sent: Monday, March 01, 2004 10:02 AM
To: Berger, Daniel
Subject: RE: win32etc test failure
I like your approach better: allow me to be lazy (so I am not _forced_
to give it) but forgive me if I do ;-)
It worked
2004 Mar 01
0
RE: win32etc test failure
For delete_user, try this patch:
etc.c, line 639:
- lpHost = (LPCWSTR)STR2CSTR(rbHost);
+lpHost = AllocWideLString(rbHost);
Lemme know how it goes.
Dan
-----Original Message-----
From: win32utils-devel-bounces@rubyforge.org
[mailto:win32utils-devel-bounces@rubyforge.org] On Behalf Of
win32utils-devel@rubyforge.org
Sent: Monday, March 01, 2004 10:02 AM
To: Date, Shashank [Non-Employee]
Cc: