Displaying 20 results from an estimated 6044 matches for "blacks".
Did you mean:
black
2013 Feb 04
1
ggplot and colors
Hello,
I have a problem with ggplot and colors
I used this function to draw somes lines and I want them to be all black
(just to test)
however, I dont get any black line in the figure.
Do you have any experience with ggplot and manual colors??
ggplot(cmax, aes(cmax[,3], cmax[,6],colour=interaction(cmax[,1],cmax[,2])))
+ geom_line() + geom_point() +
2013 Apr 11
1
Dotchart per groups
Hi all,
I would like to ask you for help. I did a dotplot - using dotchart
function.
There are two localites (loc) with values 75 or 56 in my data ZZ.
The f column has 4 levels: P1, S1, S8, R6.
The dataframe is ordered by N value, pchloc value is assign to use "pch" in
plot.
> head(ZZ)
loc f N color ordered pchloc
98 75 S1 6.39 green 1 16
99 75 S8 6.44 blue
2005 Nov 12
1
how to make automatically each level from data.frame to vector
Dear R-helpers,
Suppose I have dataset like this below:
data(HairEyeColor)
dfHEC <- as.data.frame(as.table(HairEyeColor))
my.dfHEC <- data.frame(Hair=rep(dfHEC$Hair,dfHEC$Freq),
Eye=rep(dfHEC$Eye,dfHEC$Freq),
Sex=rep(dfHEC$Sex,dfHEC$Freq))
my.dfHEC
my.dfHEC$Hair
my.dfHEC$Eye
my.dfHEC$Sex
and I know all levels for Hair, Eye and Sex.
In my case, I
2008 Apr 22
2
Multidimensional contingency tables
How does one ideally handle and display multidimenstional contingency
tables in R v. 2.6.2?
E.g.:
> prob1<- data.frame(victim=c(rep('white',4),rep('black',4)),
+ perp=c(rep('white',2),rep('black',2),rep('white',2),rep('black',2)),
+ death=rep(c('yes','no'),4), count=c(19,132,11,52,0,9,6,97))
> prob1
victim perp
2004 Sep 26
2
help for stata user
Hi,
I'm new to R, and I'm STATA user before, could you help me where I can
get document about comparison command between STATA and R.
Thank you very much,
Best regards,
-iip-
2008 Feb 29
3
Replace a list of values in data frame
Dear R-users,
I am sorry if I ask for something that has been asked
before, however, I still could not solve my little
problem by consulting the previous thread on this
topic:
I would like to replace several values in a data
frame, such as in:
colorful
subject response
1 me black
2 me brown
3 you red
4 me black
5 you brown
read in with
2006 Mar 31
1
Re: BRI cards, HFC, and bristuff - a generalquestionto clear up my understanding.
Thanks.
I think our problem ca be similar. Have you tried to call from analog phone #1 to another analog phone #2? It works. But when you try
to call vice versa from #2 to #1 it does not work. When you restart asterisk it works again - but only one direction.
-David
________________________________
From: asterisk-users-bounces@lists.digium.com
2009 Nov 20
6
How to add a top level title to multiple plots
How can I add an overall plot title to these four plots?
I would like to have something that says, "Distribution Comparisons":
par(mfrow = c(2, 2))
# Plot 1
plot(rnorm(10),type="l",col="red")
title(main = list(paste("Normal"),
????????????????????????? col="black", cex = 1.0))
# Plot 2
plot(rpois(10,
2002 May 15
3
Struchture change of a data frame
Hi guys
I've got an easy question but couldn't find any quick solution. I woulk
like to change the following matrix
good bad worse
Blue 1 2 2
Yellow 2 1 3
Black 3 4 4
Into the following structure
good 1 Blue
Bad 2 Blue
Worse 2 Blue
Good 2 Yellow
Bad 1 Yellow
Worse 2 Yellow
Good 2 Black
Bad 4 Black
Worse 4 Black
Thanks a lot.
Regards
Beat Huggler
---
Beat Huggler
Quantitative
2010 Jul 23
2
decimal seperator
Hi R-List,
I have a question regarding R-language formats, I think. I am producing a
series of graphs (using plot, barplot, barchart, and bwplot, using either
text or mtext to place values on the graphs) and tables for a Francophone
country. In fact, I have already done so. However, while they are pleased
with the results they've requested I convert all of my decimal points into
the French
2013 Dec 14
2
cgi graphs text unreadable (black-on-black)
Guys,
This is probably known, but since I working on nut tonight, I thought I would
make sure. This is with the latest built from git. The cgi-bin script that shows
the graph of upsstats has text that is unreadable. The text is black and the
background is black. Here is a screenshot:
http://www.3111skyline.com/dl/bugs/nut/cgi-black-text.jpg
Here is the same page with the text selected with
2008 Mar 10
1
ML Estimation Differences with R and SAS
List,
I'm working on fitting a logistic model for a well known dataset (which is
given below in case anyone wants to try to reproduce). I used both R and
SAS to fit the model and have some differences in the parameter estimates.
I'm wondering if R calculates the ML estimates differently. I'm making NO
accusations as to which program is "right or wrong". That is not the
2011 May 11
2
Dotplot (package Hmisc) with groups: colours and symbols
Hello all,
This question concerns the function Dotplot from the Hmisc package.
My aim is to compare values between groups in each panel of the
Dotplot, with the values of different groups clearly distinguishable
by different symbols. All lines and symbols should be coloured in
black.
Before adding the panel function to the Dotplot, the groups behaved as
desired and were marked by different
2009 Jul 24
4
Colors column don't give correct color with plot()
Hey guys,
I'm having trouble getting the correct colors, when they are read from
a csv file. Here's an example:
1 1 black
1 2 green
1 3 green
1 4 black
1 5 peachpuff
Call it blah.csv. Then I ran:
data <- read.csv("blah.csv",header=FALSE,sep="")
and then to plot the data, I ran:
plot(data[,1],data[,2],col=data[,3])
But the output reports a vertical line with
2012 May 07
2
Destroy VM failed.
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/libvirt-users/attachments/20120507/c5c413bc/attachment.htm>
2013 Jun 15
2
Plotting two y-axis vs non-numeric x-axis
Hi dear all, the following code is correct. but I want to use non-numeric
x-axis, for example
if I replace time <- seq(0,72,6) by
month <-
c("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec","Pag")
Ofcourse I use factor(month) instead of
2013 Dec 14
0
cgi graphs text unreadable (black-on-black)
On Dec 14, 2013, at 5:13 AM, David C. Rankin wrote:
> This is probably known, but since I working on nut tonight, I thought I would
> make sure. This is with the latest built from git. The cgi-bin script that shows
> the graph of upsstats has text that is unreadable. The text is black and the
> background is black. Here is a screenshot:
That's odd.
I'll admit that I
1997 Jun 30
0
R-beta: Color specifications -- simple 'bg' / 'fg' swapping -- proposal
Consider the following example :
data(iris)
attach(iris)
par(bg = 'midnightblue', fg = 'yellow')
plot(Petal.Length, Petal.Width, main = "Fisher's iris data", sub = "3 kinds")
##>>> gives black axis labels and titles ...
## Currently, the plot I want is produced by
par(bg = 'midnightblue', fg = 'yellow', col.axis='yellow',
2011 Feb 05
2
Help!!! from R beginner
Hello,
I'm trying to add a column to the following data frame. The new column
will contain "black" when the 5th column(if_TE_related) is
"TE_related", or "orange" when the 4th column is " " (space).
"chromo" "MSU_locus" "end5" "end3" "if_TE_related"
"chr04" "LOC_Os04g01006" 1032
2016 Apr 17
6
how do I use only black ink?
I have an HP Photosmart C3180 All-in-one.
As I haven't had any need for color lately,
when I last replaced ink, I only replaced the black cartridge.
It didn't work, even when printing grayscale-only images,
even when telling print-set-up grayscale-only.
Is there a way to tell my printer to use only the black ink cartridge.
My test image is a handmade postscript file
that only use setgray