search for: anupa

Displaying 10 results from an estimated 10 matches for "anupa".

Did you mean: anup
2008 Feb 25
1
How do I use as.Date when day values are missing?
...-01-23" NA "1993-01-28" "1993-01-31" "1993-01-12" Is there a way of using the as.Date function when I only have partial dates (eg missing day information which is represented as "00", as above) such that the date isn't represented as NA? Thanks, Anupa ____________________________________________________________________________________ Never miss a thing. Make Yahoo your home page. [[alternative HTML version deleted]]
2007 Dec 16
1
Extracting Year (only) information from Non-Standard Dates
I have some data whose date column consists of two types of date entries: (a) year-only entries (eg "1983") and (b) full date info (eg September 12, 1962). Here's what the non-standard date info looks like: > mode(non.standard.dates) [1] "numeric" > head(non.standard.dates) [1] July 15, 1925 February 13, 1923 July 10, 1988 February 24, 1931 [5] 1952
2009 Aug 13
0
[fdo] Announce: Linux Desktop Testing Project (LDTP) 1.7.0 released
...Special thanks to Arvind Patil <apatil at vmware.com>, Ara Pulido <ara at ubuntu.com>, Guofu Xu <Guofu.Xu at access-company.com>, nouar garcia-mardmabek <nouar.garcia at sun.com>, Jos? Luis Segura Lucas <josel.segura at gmx.es>, Tim Sun <tim.miao at sun.com>, Anupa Kamath <anupak at vmware.com>, Paul Larson <Paul.Larson at canonical.com>, Murray Cumming <murrayc at murrayc.com>, Armin Burgmeier <armin at arbur.net>, New API addition: Window maximize, minimize, close, activate APIs using python wnck module Download source tarball -...
2023 Jun 29
1
Plotting factors in graph panel
Anupa, I think your best bet with your data would be to tidy it up in Excel, read it into R using something like the readxl package and then supply some sample data is the dput() function. In the case of a large dataset something like dput(head(mydata, 100)) should supply the data we need. Just do dp...
2023 Jul 06
1
Plotting factors in graph panel
..."Bank Savings 3", "Bank Savings 3", "Bank Savings 3", "Bank Savings 3")), class = c("tbl_df", "tbl", "data.frame"), row.names = c(NA, -140L)) On Thu, 29 Jun 2023 at 21:11, John Kane <jrkrideau at gmail.com> wrote: > Anupa, > > I think your best bet with your data would be to tidy it up in Excel, > read it into R using something like the readxl package and then supply > some sample data is the dput() function. > > In the case of a large dataset something like dput(head(mydata, 100)) > should su...
2023 Jul 06
1
Plotting factors in graph panel
Btw, I think "lattice" graphics will provide a better solution than "ggplot", because it puts appropriate (space saving) markers on the axes and does axes labels well. However, I cannot figure out how to do it in "lattice". On Thu, 6 Jul 2023 at 15:11, Anupam Tyagi <anuptyagi at gmail.com> wrote: > Hi John: > > Thanks! Below is the data using your suggestion. I used "ggplot" to make a > graph. I am not too happy with it. I am looking for something simpler and > cleaner. Plot is attached. > > I also tried "latt...
2023 Jul 06
2
Plotting factors in graph panel
On Thu, 6 Jul 2023 at 15:21, Anupam Tyagi <anuptyagi at gmail.com> wrote: > > Btw, I think "lattice" graphics will provide a better solution than > "ggplot", because it puts appropriate (space saving) markers on the axes > and does axes labels well. However, I cannot figure out how to do it in &...
2023 Jul 07
1
Plotting factors in graph panel
Hallo Anupam I do not see much difference in ggplot or lattice, they seems to me provide almost identical results when removing theme part from ggplot. library(ggplot2) library(lattice) ggplot(TrialData4, aes(x=Income, y=Percent, group=Measure)) + geom_point() + geom_line() + facet_wrap(~Measure) xyplot(...
2023 Jul 07
1
Plotting factors in graph panel
Thanks! You are correct, the graphs look very similar, except ggplot is scaling the text font to make it more readable. Is there a way to scale down the x-axis labels, so they are readable? On Fri, 7 Jul 2023 at 12:02, PIKAL Petr <petr.pikal at precheza.cz> wrote: > Hallo Anupam > > I do not see much difference in ggplot or lattice, they seems to me > provide almost identical results when removing theme part from ggplot. > > library(ggplot2) > library(lattice) > > ggplot(TrialData4, aes(x=Income, y=Percent, group=Measure)) + geom_point() > + &gt...
2023 Jun 29
1
Plotting factors in graph panel
...carriage returns and spaces to organize the data, but I have a column of numbers that are not identified. The values below $10 do not make much sense compared to other values. I am tired of guessing. Tim -----Original Message----- From: R-help <r-help-bounces at r-project.org> On Behalf Of Anupam Tyagi Sent: Wednesday, June 28, 2023 11:49 PM To: r-help at r-project.org Subject: Re: [R] Plotting factors in graph panel [External Email] Thanks, Pikal and Jim. Yes, it has been a long time Jim. I hope you have been well. Pikal, thanks. Your solution may be close to what I want. I did not kno...