Displaying 20 results from an estimated 3000 matches similar to: "several image.plots with same axis (maximum)"
2007 Nov 21
2
Reconstruct array dataset
Hi there
I have an interesting problem:
My csv file is of array dimensions [12,50], but it was saved the wrong way: there should be only 11 colums. What happens now if I read it into R is that the whole data set is shifted ( in the first row, the last column contains already the first value of the supposed second row and so on...)
how can I tell R to switch after 11 read values to the next row,
2007 Oct 15
1
Save variable with loop part
Hello
does anyone know how to save in a variable with a loop part.
Im reading several csv files with read.table and would like to save with a loop:
for (i in 0:9){
}
should give read0, read1, read2, read3, read4, read5, read6, read7, read8, read9
st. like read(i)<-read.table("myfile.csv".....)
I tried with paste("read", i, sep"") or to save as a vector with
2016 Apr 16
1
Mean of hexadecimal numbers
Hm...,
Should these two versions produce the same solution? Unfortunately and
shame to confess, I don't know much about the colors in R:
myColors <- c("#FF7C00","#00BF40","#FFFF00")
Colors=rgb2hsv(col2rgb(myColors))
apply(Colors,1,mean)
h s v
0.2122974 1.0000000 0.9163399
* * * * *
# Average the 1st two by taking the middle colour
2008 Sep 22
4
dedicated usb support
hi wine user group
I try to run a model aircraft simulator (aerofly professional deluxe) with wine. the installation was a success. after that, I can start the simulator but it doesn't identify the usb game commander (at least a 4 channel usb device). but the kde desktop control center detect the right device IPACS Ikarus Gamecommander (/dev/input/js1). how I get support for this device
2007 Aug 13
1
password server DOMDC1 rejected the password: NT_STATUS_LOGON_FAILURE
Hello list,
I have trouble with a smb configuration that worked fine before I upgraded my samba to the latest stable release.
I used samba 3.0.23c (Slackware11) and now I'm using samba 3.0.25b (Slackware12).
The error/failure looks like this:
I'm trying to connect to my HOME service and I fail. The log produces only this:
[2007/08/13 10:29:33, 1]
2007 Feb 26
1
Samba PDC and Win2k PDC
hi,
I would like to change the old windows 2000 domain structure into one samba 3 domain. the migration is to take place gradually for the departments. I had imagined to packing the samba pdc with another domain name into the same subnetz as windows pdc.
Windows 2k DN = work.wurst.local
Samba 3 DN = work.wurst.de
IP Subnet = 192.168.2.0/24 (Samba and Windows)
is it possible ?
thank
stefan
--
2007 Sep 21
1
SIP and Firewall
Dear Group!
I want to improve the firewall rules for SIP
and I already compiled the linux kernel with additional SIP netfilter
settings
Now I found this on the internet:
modprobe ip_conntrack_sip ip_nat_sip
Set IPtables filter rules
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A INPUT -p udp --dport 5060 -j ACCEPT
Set IPtables NAT rules
iptables -A FORWARD -o
2007 Feb 18
0
Fwd: Re: Samba 3.0.24 + OpenLDAP
Hello,
I did it from the same side on a suse 9.3. For me it worked with
smpldap-useradd -m . But I had to recognize that some of the steps descriped there did not work on suse and I had to change different things
in my ldap.conf and with pam and nss. Did yoe set smbpasswd -w yorldappassword and smbpasswd -a root perhaps you must have a usermap
in smbusers root=administrator or just a net rpc
2007 Nov 07
1
File renaming doesn't work if only case changes
Hi!
I've searched the web, but didn't find anything related to my strange problem: when I try to rename a file or a directory on a Samba share from my Windows-Client and I only change the case of a some characters it's ignored and the old filename is displayed again.
Example:
A directory "New Folder" should be renamed to "new Folder". Thats just ignored :-(. If I
2007 Nov 01
1
Start plot really at baselines x=0, y=0
Dear R
Plots without par arguments do start not at zero (means, the box around is somwhere outside the specified plotrange). How to start really from zero, pe. basline y=0?
every standart par works like this:
x<-seq(1,10,0.1)
y<-sin(x)
plot(sin(x))
Thanks for help
Marc
--
Ist Ihr Browser Vista-kompatibel? Jetzt die neuesten
Browser-Versionen downloaden:
2007 Mar 14
0
S/DNAT and Xen problems
There are several people out there having problems with SNAT and Xen. I''m having a problem with DNAT and Xen and I think the reason for the problem could be exactly the same.
I have actually tracked the problem down to http://lxr.mstier.de/linux/source/net/ipv4/route.c?v=2.6.16.28-xen302#1922 -- xenbr0 is the input device and it has no IP which is why everything coming in from that
2016 Apr 16
0
Mean of hexadecimal numbers
On 16/04/2016 8:47 AM, Atte Tenkanen wrote:
> Hi,
>
> How would you calculate the "mean colour" of several colours, for
> example c("#FF7C00","#00BF40","#FFFF00")?
>
Bert answered your subject line question. Your text is asking something
else: if those are colours, you don't want to treat each of them as a
single integer.
A
2009 Jun 24
1
parallel rotated strips with color gradient
Hi,
I want to produce two parallel rotated strips with color gradient. So
far, the sample strip is something produced by this:
pushViewport(viewport(x = unit(0.638, "npc"), y =unit(0.386, "npc"),
width=.62, height=0.006, angle=137.2))
grid.rect(y=100:1/100, just="top",
gp=gpar(col=NA,
fill=colorRampPalette(c("lightgray",
2007 Feb 16
1
Fwd: Re: user add script, machine add script
Hello to all,
after noone bother my subject. I think I'm all alone making mistakes
on this thing. But I should really know if it is possible to mange
the administration of samba in an comfortable way. After all the years I
worked with it I never did manage it to be in an sufficent manner.
Is there a plan in the future to have a central administration within the samba package?
--------
2009 Apr 17
1
ColorRamp different from ColorRampPalette
I try to use ColorRamp as ColorRampPalette (i.e. with the same gradient), but
it seems there is a nuance that I've missed.
pal.crp<-colorRampPalette( c("blue", "white", "red"), space = "rgb")
plot(rep(0,40),pch=16,col=pal.crp(40))
# is great
But, using the same gradient with colorRamp is giving erratic colors.
pal.cr<-colorRamp(
2007 Mar 09
2
[LLVMdev] compile errors with demo projects Stacker and Hello
Hi all!
I have sucessfully installed LLVM 1.9 under FreeBSD on a x86 PC.
I have successfully executed "An Example Using the LLVM Tool Chain" that is
written in the document http://llvm.org/docs/GettingStarted.html
When I tried out the demo projects "Hello" and "Stacker" I get compile errors. When I run "gmake" in the directory
2011 Aug 31
1
unequal bins in filled.contour
Hello,
I am trying to plot SADIE red-blue plots of cluster indicies using
filled.contour. I want a plot which only has three bins for the data:
<-1.5, -1.5 - 1.5, >1.5, but I am having trouble getting there.
example
X1 X2 X3 X4 X5
1 -5 -4.5 1.0 4.5 6
2 -3 -2.0 1.2 -1.0 3
3 0 0.0 0.0 -0.5 -1
4 -2 -3.0 1.0 1.5 3
5 -6 -2.0 0.5 3.0 2
example<-as.matrix(example)
2013 Jul 24
1
Alpha channel in colorRamp() and colorRampPalette()
Hi all,
I had the need to create a colorbar considering the alpha channel of the colors, but colorRamp() and colorRampPalette() ignored the alpha argument in rgb(). So I performed some minor modifs. in their codes, as to support the interpolation using the alpha channel.
I guess that those simple modifications might be useful for other people, so perhaps it would be worth to add them to
2008 Aug 29
0
problems with virt-manager and xen 3.3.0
Hello
i'm setting up a debian system, with no root acount, i manage it with the sudo command, and installed the new xen 3.3.0 on it
than i installed fluxbox and vnc4server on this machine, to get remote access to the debian/xen system i use ssh and xvnc4viewer, ssh for the console and xvnc4viewer for the windowmanager, until than everything works fine.
than i installed virt-manager from the
2007 Aug 23
1
figure-definition and heatmap question
Hello,
I have two questions. I'd like to visualize data with a heatmap and I have the
following testcase:
x <- rnorm(256)
nx <- x + abs(min(x))
nnx <- 255/max(nx) * nx
x <- matrix(nnx, 16, 16)
rownames(x) <-