search for: displs

Displaying 15 results from an estimated 15 matches for "displs".

Did you mean: dispels
2020 Oct 21
2
AES spesification
Dear I use dataset , as called "mpg" This is code ggplot(data=mpg)+ geom_point(mapping = aes(x=displ, y=hwy, colour=year)) But I would like to see only "year of 1999" in this relationship between x and y variables How could I change the code in this direction? I found the following code library(dplyr)year_1999 <- filter(mpg, year=="1999")ggplot(year_1999,
2003 Feb 01
3
Read.table problem
Hi ! I am new to R, and using the MAC version onto Mac OS 9.1. My question concerns the problem I encounter when I try to read some data I have using the read.table function. I always get an error of type : Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : line 1 did not have 9 elements Here is my code: varnames <- c("names", "symbol",
2007 Feb 19
1
Installing Rmpi on FC5 with lam
...arning: ?sexp_recv? may be used uninitialized in this function Rmpi.c: In function ?mpi_reduce?: Rmpi.c:586: warning: ?op? may be used uninitialized in this function Rmpi.c:587: warning: ?sexp_recv? may be used uninitialized in this function Rmpi.c: In function ?mpi_scatterv?: Rmpi.c:320: warning: ?displs? may be used uninitialized in this function Rmpi.c: In function ?mpi_gatherv?: Rmpi.c:225: warning: ?displs? may be used uninitialized in this function On loading the library occurs the following error: > library(Rmpi) Error in dyn.load(x, as.logical(local), as.logical(now)) : unable to load s...
2010 Oct 26
2
discerning plot dots using colors
Dear List, I am using the command plot to present the relationship between bird richness (Y axis) and elevation (X axis). However, I would like to observe the distributions of bird richness in different administrative areas (A, B, C, …., G) in this plot. For example, the dots in area A might fall in the upper right part of the plot, while those in area B might appear in the middle of
2010 Jan 31
0
hepta valen t snugg ling initi ators optio naliz e
handc raftm an dost schem atics retyp ing poser s smoke neces sitie s nonre alist ic wooll ens verti cally bayan ihan actab ility total ises bayan ihan gauzy solon chak metas tasiz es inter surve y phosp hatid ic displ ayabl e invoi cing ridde r benig nancy eddys tone urim islan der awake ning piran dello parre l davit s displ ant losse s rubeo lar visio nal legen d
2012 Dec 02
1
Problem with figures
I am having problem making ggplot2, tikzDevice, and knitr working together. I used a very simple example: ---------------------------example.Rnw----------------------------- \documentclass[preview]{standalone} \begin{document} \begin{figure} <<fig1,eval=TRUE,echo=FALSE,dev='tikz'>>= library(ggplot2) qplot(displ, hwy, data = mpg, colour = factor(cyl)) @ \end{figure}
2006 Oct 18
1
[PATCH] Compiz Events
I wrote this quick patch because I want plugins to be able to communicate with each other with events. Using the option values to communicate with each other is a bit cumbersome if you want to monitor for changes or do anything which requires events. It is just a small patch and works in the compiz way (ie by wrapping the core event). Some potential events that I can think of at the moment are
2002 Jun 06
1
X11 forwarding problem
hi i have problems with the X11 forwarding, TCP port forwarding works fine: the tcp ports bind to ipv4 and ipv6 localhost, but the X11 port (6010) binds ONLY to the ipv6 localhost, which does not work with the normal ipv4 programs :-( is this a bug, or is this an hidden feature mfg hermann redhat 7.1: openSSH 3.2.2: [mrq1 at xxxx mrq1]$ ssh -X -L 10000:localhost:22 localhost Last login: Thu
2017 Feb 01
0
Stalled Replication & "DsGetNCChanges 2nd replication"
I am attempting to add a Windows 2008R2 DC to my S4 domain... and it always stalls out attempting to replicate CN=Configuration object X of Y. So I have been digging, digging, digging, and I found this in the log file of the DC the 2008R2 box is attempting to replicate from - Feb 1 16:52:42 larkin28 samba[18650]: ../source4/rpc_server/drsuapi/getncchanges.c:1961: DsGetNCChanges 2nd
2006 Jun 08
1
[PATCH] raise window key binding
With raise_on_click disabled, I wanted to be able to raise a window with a button click sometimes. It seemed logical to do something like the lower window key binding. So I did it. It was quite simple, but here is the patch anyway. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/octet-stream Size: 3680 bytes Desc: not available
2009 Oct 02
1
ggplot2: proper use of facet_grid inside a function
Hello Again R Folk: I have found items about this in the archives, but I?m still not getting it right. I want to use ggplot2 with facet_grid inside a function with user specified variables, for instance: p <- ggplot(data, aes_string(x = fac1, y = res)) + facet_grid(. ~ fac2) Where data, fac1, fac2 and res are arguments to the function. I have tried p <- ggplot(data,
2013 Mar 11
2
[Bug 62190] New: Invalid ROM contents on PowerMAC G5 11, 2 with GeForce 6600 LE
https://bugs.freedesktop.org/show_bug.cgi?id=62190 Priority: medium Bug ID: 62190 Assignee: nouveau at lists.freedesktop.org Summary: Invalid ROM contents on PowerMAC G5 11,2 with GeForce 6600 LE QA Contact: xorg-team at lists.x.org Severity: normal Classification: Unclassified OS: Linux (All)
2007 Nov 14
4
Creating a group share
Hello, I have a Samba PDC (3.x) running in a OpenSUSE 10.2 system. The authentication backend is Open LDAP. I want to create a group share (WTCCC) which should be accessible to a group of users (belonging to a group called WTCCC). The users' possess this group as their secondary group (NOT primary). And the share folder would have its gid bit set, so all the writes to the folder
2017 Aug 11
0
Annotation Ticks on the axis
> On Aug 11, 2017, at 3:23 AM, Vivek Sutradhara <viveksutra at gmail.com> wrote: > > Hi, > Thanks for the quick answer. I looked into the link that you provided. But > I am still not able to implement a solution. Here is my attempt : > > library(ggplot2) > x<-1:10 > y<-x^2 > df<-data.frame(x=x,y=y) > p1<-ggplot(df,aes(x,y))+geom_point()+ >
2017 Aug 11
2
Annotation Ticks on the axis
Hi, Thanks for the quick answer. I looked into the link that you provided. But I am still not able to implement a solution. Here is my attempt : library(ggplot2) x<-1:10 y<-x^2 df<-data.frame(x=x,y=y) p1<-ggplot(df,aes(x,y))+geom_point()+ scale_x_log10( breaks = scales::trans_breaks("log10", function(x) 10^x), labels = scales::trans_format("log10",