Displaying 20 results from an estimated 700 matches similar to: "Plots Without Displaying"
2006 Oct 05
2
Writing Text into Plots
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello,
I have a simple question on the text() method in plots, e.g.:
text(3,4,adj=1,cex=1.0, expression(alpha == beta))
I know there exists a lot more like frac(), etc which could be used for
expression. But a help(frac) doesn't return any results - where do I
have to look for a documentation of possible text commands?
More in detail I'm
2006 Sep 25
2
Can't mix high level and low level plot functions.
Hey R-Comunity,
I'd like to print out an histogram of some experimental data and add a
smooth curve of a normal distribution with an ideally generated
population having the same mean and standard deviation like the
experimental data.
The experimental data is set as vector x and its name is set to
group.name. I paint the histogram as follows:
hist(data, freq=FALSE,
2006 Aug 08
1
How to convert list elements to data.frames or vectors?
Dear R mailing-list comunity!
I'm currently trying to implement an R method. I have two sets of data
that I convert into a data.frame each. These data.frames I'd like to
append to a list:
# generate a list
listTable<-list()
# add one set of data
x<-1000 ;y<-1 ;listTable[[length(listTable) + 1]] <-
data.frame(matrix(rnorm(x*y), nrow=y)); rm(x); rm(y)
# add another set of
2006 Aug 22
3
How to interrupt running computation?
If I start a computation in R, how can I interrupt it?
I' using R 2.1.0.
Thanks for your help,
Lothar
2019 Jul 22
2
Fwd: Character not allowed in mailbox name
Hi Arnold,
thanks for your assistance. I solved the issue right now by changing
prefix = Shared/%%u/
to
prefix = Shared/%%n/
This omits the @mydomain.de part which holds the dot causing the
trouble. Why this became a problem due to the update I wouldn't know.
Regards
Lothar
Am 22.07.2019 um 10:49 schrieb Arnold Opio Oree:
> Hi Lothar,
>
> I haven't yet had the opportunity to
2020 Aug 11
2
Switching roles between 2 DCs
Yep, that did it, thanks a lot, "-k yes" wasn't good enough. There now
was another error, though:
ERROR(<type 'exceptions.AttributeError'>): uncaught exception - 'module'
object has no attribute 'drs_utils'
The solution offered and working is inserting
? import samba
? import samba.getopt as options
? import ldb
+import samba.drs_utils
? from ldb
2010 Jan 26
10
Detect file change
Hello everyone!
How can I detect if a folder have changed (sync logic) than run a script
if it's true?
I found this script over the net, but I think it's such complicated for
that simple thing...
#!/bin/bash
############### detectdir.sh by Jagbir Singh #################
#
# script to detect changes in directory.
#
2010 Jan 19
3
Moving the system from 5.3 to 5.4
Hello,
I built a system based on centos 5.3, now i'm planing to move to 5.4.
To do it I rebuilt all rpms making some changes.
When I use a common centos 5.3, it automatically detects that 5.4
is available and move update for it when i run yum update. How
does this work? How the system detects new version and update
for it?
I thought centos-release rpm just update repo for it, but I saw this
2006 Apr 09
2
using R in a java application
Dear All,
I'd like to write a little application in java wich should pass some commands and data to R and displays the results (tables and charts) in a java frame. First I wanted to work with Omegahat's SJava but had lots of issues already at the installation.
Then I heard some rumors that SJava generally is not a very active project and runs rather buggy (that's true?). So my
2019 Jul 22
1
Character not allowed in mailbox name
Hi everybody,
after an update this morning to dovecot 2.3.7 we cannot connect to our
shared mailboxes anymore. The error message as issued in Thunderbird:
"Character not allowed in mailbox name '.'"
I didn't change anything about the configuration. Output of dovecot -n:
[...]
namespace {
? list = children
? location = maildir:%%h:INDEX=%h/shared/%%u
? prefix = Shared/%%u/
2020 Aug 11
2
Switching roles between 2 DCs
Being a newbie to Samba 4 and OpenLDAP I am setting up a DC going
exactly by the rules, testing and taking my time. I got to the point
where I would switch, just testing, roles from DC1 to DC2 and vice
versa. Switching all roles from DC1 to DC2 was a piece of cake,
reswitching "domaindns" and "forestdns" to DC1 wasn't, though:
samba-tool fsmo transfer --role=domaindns -k
2006 Apr 15
2
cannot load rJava in R
Hi all!
I recently tried to install the rJava package on my notebook (Debian Etch / Kernel 2.6.15 / jdk 1.5.0-5 / R 2.2.1 / rJava ?? the repo one, have a look below). I compiled R myself with "--with-readline=no" and "--enable-R-shlib flags". Now, each time loading the library rJava I encouter the same error. I reinstalled several times (as root), always the same problem:
2019 May 02
2
libvirtd not starting
Hi everybody,
I've set up an new CentOS 7.6.1810 server. Then, via yum I installed
qemu-kvm libvirt libvirt-python libguestfs-tools virt-install. There
were no problems. But when I try to
systemctl start libvirtd
I get the following message:
"libvirtd: process 472: arguments to dbus_message_iter_append_basic()
were incorrect, assertion "_dbus_check_is_valid_utf8 (*string_p)"
2006 Mar 28
1
Problems with pf + ftp-proxy on gateway
I'm trying to use pf + ftp-proxy n a 6.1-PRERELEASE machine.
I have this line on inetd.conf:
ftp-proxy stream tcp nowait root /usr/libexec/ftp-proxy
ftp-proxy -n
And this lines on pf.conf:
rdr on $int_if proto tcp from any to any port ftp -> 127.0.0.1 port ftp-proxy
pass in quick on $ext_if inet proto tcp from any port ftp-data to
$ext_if:0 user proxy flags S/SA keep
2020 Aug 11
2
Switching roles between 2 DCs
Am 11.08.2020 um 16:02 schrieb Rowland penny via samba:
> On 11/08/2020 14:54, Lothar Schilling via samba wrote:
>> Yep, that did it, thanks a lot, "-k yes" wasn't good enough. There now
>> was another error, though:
>>
>> ERROR(<type 'exceptions.AttributeError'>): uncaught exception - 'module'
>> object has no attribute
2011 Jun 01
3
conversion of matrix into list
Dear all,
I have a matrix X which consists of 2 columns. I would like to convert this
matrix into a list where every entry of the list consists of a single row of
the matrix.
Does anyone have a suggestions how to manage this?
Thank you for your efforts in advance!
Best,
Martin
[[alternative HTML version deleted]]
2011 Jul 20
2
Question about converting list items in matrix
Hi friends,
I have got a list where each element might have variable number of members.
$`4213`
[1] "214077_x_at"
$`164832`
[1] "225996_at" "235977_at"
$`339010`
[1] NA
$`23410`
[1] "221562_s_at" "221913_at" "49327_at"
$`285386`
[1] "229764_at"
$`2099`
[1] "205225_at" "211233_x_at"
2011 May 13
3
Excel to R
Hello R-help
I am trying to copy and paste large column of data from windows Excel into R
base speed sheet using:
Data1<-edit(data.frame())
But I can only copy and paste one cell at a time which is time consuming.
Also how can assign each column to a variable.
[[alternative HTML version deleted]]
2011 May 23
2
Linear regression - several response variables vs few ind variables
Hi all,
I need to run several simple linear regressions at once, using the
following data. Response variables: Bird species (sp 1, sp2, sp3...spn).
Independent variable: Natprop - proportion of natural area. covarate:
Effort = hours). One single linear regression would be: lmSp1 <- lm(sp1~
natprop + effort). However, I need to run this linear regression for all
bird species that I have
2020 Aug 25
2
SMB1 disabled - no workgroup available
Hi everybody,
having set up Samba 4.12.6 as DC on Debian 10.5 "smbclient -L dc" give
me this:
Enter PA\root's password:
Anonymous login successful
??????? Sharename?????? Type????? Comment
??????? ---------?????? ----????? -------
??????? sysvol????????? Disk
??????? netlogon??????? Disk
??????? IPC$??????????? IPC?????? IPC Service (Samba 4.12.6-Debian)
SMB1 disabled -- no