Displaying 20 results from an estimated 90000 matches similar to: "R help"
2006 Oct 30
1
Cannot be coerced to logical?
Hello all,
So I am having a puzzling problem. I am working with a 534 x 1065
data frame entitled LocalMaxExpBlue.COR which is completely full of
logical values "TRUE" and "FALSE." However, when I attempt to
manipulate this data frame, R does not recognize it as logical.
Strangely enough, it will identify individual columns (but not rows)
as logical. It will also
2017 Dec 20
5
Unable to Join the Active Directory as a Domain Controller
Hello,
I am trying to use Samba in version 4.7.0 as a replication of an Active
Directory running on Windows 2012-R2.
For that, I execute the process described on this page:
https://wiki.samba.org/index.php/Joining_a_Samba_DC_to_an_Existing_Active_Directory
When I run the command to join the domain controller, samba-tool returns
the following error:
DsAddEntry failed with status
2006 Feb 13
2
New 3.0.21b-1 Samba does not respect system "Groups"
Hi all,
I am running
ii samba 3.0.21b-1 a LanManager-like file and printer server fo
ii samba-common 3.0.21b-1 Samba common files used by both the server a
on Debian 3.1 (Sarge) Linux 2.6.8-2-386 #1 Thu May 19 17:40:50 JST
2005 i686 GNU/Linux
I have noticed that the Samba software does not recognize newly
created "groups" with the groupadd commands. I'll
2011 Aug 31
2
dbWriteTable error message
I am at loss of what is going on here ...
I am trying to write to a SQLite database:
con <- dbConnect(dbDriver("SQLite"), dbname="pres-docs.rqda")
I have a data frame that is 889 rows by 7 columns. The column number
and types agree with the database table columns and column type.
dbWriteTable(con, "fileAttr", DF.4, row.names=FALSE, overwrite=TRUE)
Then I get
2011 Aug 25
2
replicate lines of data frame
Greetings!
I am just now learning to use R for my dissertation project. I need
to manipulate a lot of text and numeric data. I created a data frame
that has 7 columns and 127 unique rows. Now I need to replicate each
line 6 times and then later change values in the first 2 columns.
I am trying to figure out how to accomplish this. I think that I need
to use rep(my.df, each=6) but it does
2011 Nov 17
3
merging corpora and metadata
Greetings!
I loose all my metadata after concatenating corpora. This is an
example of what happens:
> meta(corpus.1)
MetaID cid fid selfirst selend fname
1 0 1 11 2169 2518 WCPD-2001-01-29-Pg217.scrb
2 0 1 14 9189 9702 WCPD-2003-01-13-Pg39.scrb
3 0 1 14 2109 2577 WCPD-2003-01-13-Pg39.scrb
....
....
17 0
2011 Aug 25
1
change values in a character vector
Greetings!
I have a 127 long vector with all different character entries. I
need to generate another vector that is 6 times a long and the second
one and has the following structure:
NA
"foo"
"a unique string"
NA
"bar"
"blah"
NA
"foo"
"another unique string"
NA
"bar"
"blah"
.....
This has to be repeated 127
2016 Aug 05
2
How to modify user fields with a command line ?
2016-08-04 17:49 GMT+04:00 Rowland Penny <rpenny at samba.org>:
> On Thu, 4 Aug 2016 16:44:34 +0400
> henri transfert <hb.transfert at gmail.com> wrote:
>
> > Hi,
> >
> > On RSAT , we can see that there are some extra fields for users
> > account like description, office, phone number or email address.
> >
> > I already have hundreds of
2008 Sep 07
3
Hard system restart when DRBD connection fails while in use
Hi all,
I have two nodes (A+B) running a DRBD file system (using OCFS2) on /shared.
If I start say, an FTP file transfer to my drbd /shared directory on node A, then reboot node B which is the other machine in a Primary-Primary DRBD configuration while the transfer is in progress - node A stops at a similar time that DRBD notices the connection with Node B has been lost (hence crippling both
2008 Sep 07
3
Hard system restart when DRBD connection fails while in use
Hi all,
I have two nodes (A+B) running a DRBD file system (using OCFS2) on /shared.
If I start say, an FTP file transfer to my drbd /shared directory on node A, then reboot node B which is the other machine in a Primary-Primary DRBD configuration while the transfer is in progress - node A stops at a similar time that DRBD notices the connection with Node B has been lost (hence crippling both
2006 Jan 29
15
Reload the lib directory
Im writing a module in the lib directory.
If I change the module, the changes are not visible to the application
when i releod the web page (i am in the development evironment).
I must restart the web server (WEBrick) and so i see the changes... but
I lost more time.
How can I reload the module in the dirictory lib, without reload
WEBrick?
Thanks so much
--Reis
--
Posted via
2003 Dec 09
2
Need help with jitter buffer/quality settings
I'm using Asterisk to do audio as well as H.263 video over SIP.
Actually the video works pretty well but I have trouble with the audio.
I'm wondering if someone can suggest codec/jitter settings or other
tweaks. The system looks like this:
Softphone <---ulaw----> Asterisk #1 <------IAX (usually GSM)--------->
Asterisk #2 <-------- IAX (usually GSM) -------->
2016 Jan 28
2
nouveau contributor dinner Friday evening before FOSDEM?
Hi Hans,
On 28 January 2016 at 12:31, Hans de Goede <hdegoede at redhat.com> wrote:
> Hi All,
>
> On 21-01-16 14:09, Hans de Goede wrote:
>>
>> Hi All,
>>
>> $subject says it pretty much all. AFAIk quite a few
>> nouveau contributors are coming to Fosdem, and I think it
>> would be nice to have dinner together Friday evening
>> before
2011 Sep 13
2
Convert "RDX" and "RDB" to ASCII format?
Dear R users and experts,
I need to modify an exisiting R function from a package. The function/
variable is inside a namespace and I have problems accessing it.
I only need to get access to to corresponding sourcecode. I localised
the "RDX" and "RDB" files. But it seems to be a binary format.
How can I convert it to an ASCII format to open and extract the code
from a text
2011 Oct 21
2
stacked plot
Hi!
I am trying to use ggplot2 to create a stacked bar plot. Previously I
tried using barplot() but gave up because of problems with the
positioning of the legend and other appearance problems. I am now
trying to learn ggplot2 and use it for all the plots that I need to
create for my dissertation.
I am able to create normal bar plots using ggplot2, but I am stomped
with the stacked bar plots.
2015 May 29
7
Native ZFS on Linux
I have a question that has been puzzling me for some time ... what is
the reason RedHat chose to go with btrfs rather than working with the
ZFS-on-Linux folks (now OpenZFS)? Is it a licensing issue, political, etc?
Although btrfs is making progress, ZFS is far more mature, has a few
more stable features (especially Raid-z3) and has worked flawlessly for
me on CentOS-6 and Scientific Linux-6.
2006 Aug 13
2
Puzzling warning using 2.3.1...
Greetings folks:
Stepped away from a win/lin dual boot system and spent the better part of the
past week resetting a windows only arrangement.
Before the switch I was running 2.3.1 without any strange behaviours. When I
reached the point of putting it back on the machine I would get this puzzling
warning the first time I would try to select a cran mirror:
> chooseCRANmirror()
Warning
2019 Aug 05
1
DNS state after upgrading samba
Thanks for your answer Rowland.
That's bad news since the new DC is now in production and I can't take the risk
to break anything.
Reply inline :
> -----Message d'origine-----
> De?: samba <samba-bounces at lists.samba.org> De la part de Rowland penny
> via samba
> Envoy??: lundi 5 ao?t 2019 11:18
> ??: samba at lists.samba.org
> Objet?: Re: [Samba] DNS state
2020 Mar 31
3
Samba 4.10 / CentOS 7
Hi,
I intend to upgrade our Samba AD DC from 4.9 to 4.10 on a CentOS 7 server .
On the Wiki page :
https://wiki.samba.org/index.php/Package_Dependencies_Required_to_Build_Samba#Manually_maintained_Distribution-specific_Package_lists
<https://wiki.samba.org/index.php/Package_Dependencies_Required_to_Build_Samba>
the yum command that lists all needed packages includes python3 for RHEL 8
/
2012 Aug 31
3
Help on numerical object and ifelse function
Dear All,
this is probably an easy one but I can not get a handle on it:
x <-c(1,2,3,4,5)
y <-c(6,7,8,9,10)
z <-15
w <-ifelse(z>14,x,y)
this will give me a value of 1 for w. What I would like to get is the whole string of x, so that w would become a numeric object of 5 characters exactly the same as x.
Apreciate the help,
Sincerely,
Andras
[[alternative HTML version