Displaying 20 results from an estimated 498 matches for "pal".
Did you mean:
pa
2008 Nov 19
7
Appiing patches to wine GIT
I have never applied patches to wine, so i have a question:
I downloaded wine git , then copied cursor-patches-1.1.8.patch to wine source dir, then
When i entered
$patch -p1 < cursor-patches-1.1.8.patch
#receive
$Reversed (or previously applied) patch detected! Assume -R? [n]
Does it miens that patch no needed? Already installed?
2009 Aug 24
5
[PATCH 1/2] drm/i2c/ch7006: Make some parameter descriptions more useful.
...h7006_drv.c
@@ -515,11 +515,11 @@ MODULE_PARM_DESC(debug, "Enable debug output.");
char *ch7006_tv_norm = NULL;
module_param_named(tv_norm, ch7006_tv_norm, charp, 0600);
-MODULE_PARM_DESC(tv_norm, "Default TV norm.");
+MODULE_PARM_DESC(tv_norm, "Default TV norm (one of: PAL, PAL-M, PAL-N, PAL-Nc, PAL-60, NTSC-M, NTSC-J).");
int ch7006_scale = 0;
module_param_named(scale, ch7006_scale, int, 0600);
-MODULE_PARM_DESC(scale, "Default scale.");
+MODULE_PARM_DESC(scale, "Default scale (integer between 0 and 2).");
MODULE_AUTHOR("Francisc...
2010 Jul 08
1
Brewer.pal error
...since I exit from University. I have
returned to make a phd...I´m fortunatelly I´m working so unfortunatelly I
have few time to study (I have also a baby with 16 months).
I´m trying to use R but sometimes it gets very difficult.
I´m trying to put this code in my polygon function
colramp=colorRampPalette(brewer.pal(9,"YlOrRd")
to use brever.pal I have installed this lybrary
library(“RColorBrewer”)
but when I try to run it appears this message:
Error in col2rgb(colors) : cannot find function "brewer.pal"
If you want I can attach the zip I use.
Can anyone please guide me...
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...
2012 Nov 25
1
SVIDEO and xrandr
Hello,
I've been trying to get my n17 card to do SVIDEO tv out
--------------------------
01:00.0 VGA compatible controller: NVIDIA Corporation NV17 [GeForce4 MX 440] (rev a3)
--------------------------
It is close to working. The first issue is that it was outputting PAL, and I
found the module parameter and kernel boot config to change that:
--------------------------
nouveau.tv_norm=NTSC-M
--------------------------
That makes the picture look much better, but the colors are still off.
Then I notice that the card thinks it's outputting COMPOSITE instead of...
2008 Aug 01
0
Help with Access Control
...ms/activerecord-2.1.0/lib/active_record/
reflection.rb:189:in `source_reflection''
...
/usr/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/
associations.rb:1128:in `new''
/usr/lib/ruby/gems/1.8/gems/activerecord-2.1.0/lib/active_record/
associations.rb:1128:in `pals''
app/models/user.rb:17:in `has_pal?''
app/controllers/users_controller.rb:20:in `show''
/models/user.rb
line 16: def has_pal?(pal)
line 17: self.pals.find(pal) ? true : false
Line 18: end
/controllers/users_controller.rb
Line 18: def show
Line 19...
2005 Apr 28
1
strange behaviour of importFrom directive in name space
Dear listers,
After activating the name space for my bioconductor package (prada) I
successfully ran R CMD check. However when loading the package in R and
running the examples the imported function brewer.pal from package
RColorBrewer is not found. I can directly call brewer.pal from the
RColorBrewer name space typing RColorBrewer::brewer.pal, but it is not
imported into my prada name space. When I attach RColorBrewer, the
example runs fine. For several other function from different packages
the import...
2005 Apr 28
1
strange behaviour of importFrom directive in name space
Dear listers,
After activating the name space for my bioconductor package (prada) I
successfully ran R CMD check. However when loading the package in R and
running the examples the imported function brewer.pal from package
RColorBrewer is not found. I can directly call brewer.pal from the
RColorBrewer name space typing RColorBrewer::brewer.pal, but it is not
imported into my prada name space. When I attach RColorBrewer, the
example runs fine. For several other function from different packages
the import...
2008 Apr 01
0
[16/18]KVM:IA64 : Add kvm sal/pal virtulization support.V9
Zhang, Xiantao wrote:
>>From 5c70c038c57190144390ae9d30c3d06afba103d4 Mon Sep 17 00:00:00 2001
> From: Xiantao Zhang <xiantao.zhang at intel.com>
> Date: Tue, 1 Apr 2008 14:59:30 +0800
> Subject: [PATCH] KVM:IA64 : Add kvm sal/pal virtulization support.
>
> Some sal/pal calls would be traped to kvm for virtulization
> from guest firmware.
> Signed-off-by: Xiantao Zhang <xiantao.zhang at intel.com>
> ---
> arch/ia64/kvm/kvm_fw.c | 500
Hi Xiantao,
A few more comments:
> --- /dev/null
> +++...
2010 Jan 26
2
heatmap.2 color range
Hi,
I'm trying to create a heatmap with color ranges for different values in my
matrix. For example:
If x > 5 , use orange gradient
if x < 1.5, use red gradient
.....
Right now I have the following:
orgPal<-brewer.pal(3,"Oranges")
bluPal<-brewer.pal(3,"Blues")
redPal<-brewer.pal(3,"Reds")
grad <- ifelse(randMat > 5,orgPal,ifelse(randMat<1.5,redPal,bluPal))
hmap <- heatmap(randMat,Rowv=NULL, Colv=NULL,dendrogram="none",col = grad,
scale=&qu...
2012 Jan 29
1
ColorBrewer question
Hello, R friends,
I'm trying to change colors of my horizontal bars so that they show a sequence.
I chose the ColorBrewer palette "Blues". However the resulting plot doesn't show any changes to the default.
I tried several places of "+ scale_colour_brewer(type="seq", pal = "Blues")" with no effect.
This is my code:
p <- ggplot(data, aes(x = gender)) + scale_y_continuous(&q...
2015 Jun 08
2
Problem with GT218 (GeForce GT210)
...wmi,video,i2c-algo-bit
intree: Y
vermagic: 3.16.0-38-generic SMP mod_unload modversions
signer: Magrathea: Glacier signing key
sig_key: C2:84:ED:AC:CF:0B:47:36:52:C3:4D:23:BE:C3:56:94:42:36:E6:3B
sig_hashalgo: sha512
parm: tv_norm:Default TV norm.
Supported: PAL, PAL-M, PAL-N, PAL-Nc, NTSC-M, NTSC-J,
hd480i, hd480p, hd576i, hd576p, hd720p, hd1080i.
Default: PAL
*NOTE* Ignored for cards with external TV encoders. (charp)
parm: tv_disable:Disable TV-out detection (int)
parm: ignorelid:Ignore ACPI lid status (int)
parm: duallink:...
2003 Apr 14
3
strange connection attempts
hello,
I have turned on sysctls variables:
net.inet.tcp.log_in_vain: 1
net.inet.udp.log_in_vain: 1
And i have plenty of strange connection attempts on udp protocol
Connection attempt to UDP xx.xx.x.xxx:55414 from 192.43.172.34:53
Apr 13 23:56:53 pals /kernel: Connection attempt to UDP xx.xx.x.xxx:55414 from 192.43.172.34:53
Connection attempt to UDP xx.xx.x.xxx:12545 from 192.42.93.36:53
Apr 13 23:56:54 pals /kernel: Connection attempt to UDP xx.xx..xxx:12545 from 192.42.93.36:53
Connection attempt t...
2009 Nov 30
1
Continuous legend colors
Dear List,
I am trying to get a basic plot to show a continuous range of fill colors. It is probably easiest to demonstrate. I would like a legend like in the following example:
Satellite.Palette <-colorRampPalette(c("blue3","cyan","aquamarine","yellow","orange","red"))
require(fields)
image.plot(volcano, col = Satellite.Palette (500), legend.lab="Scale")
contour(volcano, levels = seq(90, 200, by = 5), add = TRUE)...
2016 Jan 18
3
tinc running openwrt (mikrotik metarouter mips)
...by Avast.
www.avast.com
<https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
<#DDB4FAA8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
Regards
Yazeed Fataar
<yazeedfataar at hotmail.com>
On Mon, Jan 18, 2016 at 3:17 PM, Marek Dr?pal <marek.drapal at touchware.cz>
wrote:
> Hi Yazeed,
>
> tinc package is allready included in latest OpenWRT versions and it is
> fully functional.
>
> Greetings
> Marek Dr?pal
>
> Byl 18.leden 2016 (Pond?l?), kdy? v 11:44:32 (CET) , Yazeed Fa...
2011 Apr 25
30
NoMethodError in Book
I got a following error.
NoMethodError in Book#new
Showing /home/amrit/boook/app/views/book/_form.html.erb where line #1
raised:
undefined method `model_name'' for NilClass:Class
The content of _form.html.erb file are:
<%= form_for(@post) do |f| %>
<% if @post.errors.any? %>
<div id="error_explanation">
<h2><%=
2013 Apr 25
2
Selecting and then joining data blocks
...nge the matrices for each
vector of index values generated (for which the code I used is :
index=sample( 4,7,replace=T)). How can I automate the process?
Basically, I am doing bootstrapping , but the observations are actually 4X5
matrices.
Appreciate your help.
Thanks,
Preetam
---
Preetam Pal
(+91)-9432212774
M-Stat 2nd Year, Room No. N-114
Statistics Division, C.V.Raman
Hall
Indian Statistical Institute, B.H.O.S.
Kolkata.
[[alternative HTML version deleted]]
2014 May 03
2
Mapa de quantiles con spplot
Hola,
Intento representar en un mapa participaciones porcentuales de los sectores económicos y no logro hacerlo con spplot.
He intentado con spplot(zm, c(?part88?, ?part93?), cuts=4, col.regions=brewer.pal(4, ?Set3?))
Lo pude hacer utilizando el base graphics de R, definiendo:
> plotvar88 <- zm$part88
> nclr <- 8
> plotclr <- brewer.pal(nclr, "PuOr")
> plotclr <- plotclr[nclr:1]
> class <- classIntervals(plotvar88, nclr, style="quantile")
> colco...
2013 May 02
2
saving a matrix
..., or suppose I want
to send this matrix to one of my friends (because this matrix is randomly
generated, and I dont want to use any other 500X7 matrix randomly generated
by R).
How can I save and call this matrix in the later sessions as well?
Appreciate your help.
Thanks,
Preetam
--
Preetam Pal
(+91)-9432212774
M-Stat 2nd Year, Room No. N-114
Statistics Division, C.V.Raman
Hall
Indian Statistical Institute, B.H.O.S.
Kolkata.
[[alternative HTML version deleted]]
2010 Jan 29
1
help on drawing right colors within a grouped xyplot (Lattice)
...tive or resistant to a given drug, and with a different color for each of 9 tissues of origin.
Here's what I've done:
>obj<-xyplot(EGFR~EPHA2,data=Dataset,groups=interaction(Sens,Tissue),cex=c(1,3),pch=19)
> update(obj, par.settings =
+ custom.theme(symbol = brewer.pal(9, "Paired"),
+ fill = brewer.pal(9, "Paired")))
>
Here are the data:
Tissue Sens EGFR ITGB1
1 Breast 1 8.389 12.867
2 Breast 1 3.441 9.636
3 Breast 3 8.286 12.732
4 Breast 3 9.059 12.296
5 Breast 3 7.076 10.519
6 CNS...