Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

45 results for “from:ani jaya”

simple topography in r
ani jaya · Nov 15, 2021 · r-sig-geo

Dear r-sig-geo, I need to plot a spatial map that shows a topography/elevation. It is just to show a basic information so I do not need a high-resolution map. I already googled and most of them...

unordered y axis
ani jaya · Nov 6, 2019 · r-help

Dear R-Help, I have 35 data that is month when the annual minima happened. So I want to plot those data but the order of y axis is not from 1 to 12, but let say start from 9...

unexpected (?) behavior of box()
ani jaya · Jan 6, 2022 · r-help

Dear R expert, I try to box a figure using box(). However it box the default margin, not the specified margin. #working as expected barplot(1:20) box() #working as expected, the box follow the margin par(mar=c(2...

Subset a data frame with specific date
ani jaya · Jan 13, 2020 · r-help

Dear Jeff and Bert, Thank you for your correction and explanation. Yes, I need more study regarding date format and sorry for HTML mail. I was able to subset data that I want. mjo30<-read.table("rmm.txt", header=FALSE...

'apply' for 0 or 1 element member.
ani jaya · Aug 10, 2023 · r-help

Hello, I try to calculate the mean of an array with a condition. My array is B=c(181,101,420) in dimensions. And I want to find a specific member in 3rd dimension (time monthly) based on a condition...

overlay shaded area in base r plot
ani jaya · Sep 19, 2023 · r-help

Thank you very much for the help. Turn out I can use 'density' to differentiate the overlaid area. On Tue, Sep 19, 2023, 16:16 Ivan Krylov <krylov.r00t at gmail.com> wrote: > ? Tue, 19 Sep 2023 13:21:08...

Missing x label in barplot
ani jaya · May 13, 2020 · r-help

Dear R community, I found some missing x label when I saving this plot to tiff file: justsample <- rnorm(n=1095*3,mean=100,sd=10) justsample <- as.data.frame(matrix(justsample,ncol=3)) dd <- seq(from=as.Date("1985...

Looping with looping
ani jaya · Apr 17, 2019 · r-help

Dear R community, I'm trying to create a looping to see the effect of number of samples from one dataset. Lets say I have 10 values in a single data frame and I want to see the mean of...

field significance test
ani jaya · Sep 6, 2021 · r-help

Hello Jim, thank you for your response. What I am trying to achieve is like this: #calculate the positive significant station for every row based on p-value df5<-df3 df5[df4>0.05|df5<0]<-NA #remove the insignificant...

field significance test
ani jaya · Sep 5, 2021 · r-help

Dear r-list member, I want to plot a histogram that shows a number of station that have a significant statistic (positive or negative) based on the value itself and its p-value. df3 shows the test statistic value (column...

replacing a value
ani jaya · Apr 5, 2022 · r-help

Dear R-Help, I try to change a specific value here by following these: https://www.journaldev.com/39695/replace-in-r https://stackoverflow.com/questions/5824173/replace-a-value-in-a-data-frame-based-on-a-conditional-if-statement...

Degree symbol as axis label superscript
ani jaya · Nov 30, 2021 · r-help

one of my solution : text(x,y,"\u00B0C", cex=1.1, font=2) it will produce "?C" text(x,y,"\u00B3C", cex=1.1, font=2) it will produce "superscript(3)C" so basically change the character after the "\u00B...

find local max in moving window
ani jaya · Nov 13, 2020 · r-help

Dear r list, I try to locate any local max value and location of data that follow 7 moving window condition, meaning that this data is largest and centered in 7 values to the left and 7 values to the...

simple topography in r
ani jaya · Nov 16, 2021 · r-sig-geo

Hello Mr. Akos, Thank you for your suggestion and yes I am following this page to use the getData() function, https://www.gis-blog.com/r-raster-data-acquisition/ and I did plot what I want. Thank you. library(raster...

field significance test
ani jaya · Sep 6, 2021 · r-help

and yes I can sleep well now. Thank you, Jim. ne<-rep(0,ne) total<-c(neggg,posss,ne) hist(total) Best, Ani Jaya On Tue, Sep 7, 2021 at 9:38 AM ani jaya <gaaauul at gmail.com> wrote...

overlay shaded area in base r plot
ani jaya · Sep 18, 2023 · r-help

Dear R-Help, I try to overlay two standard deviations from two means. How to change the overlaid area between two shaded areas into a specific color or maybe a soft color in a plot? > dput(mean1[1:20]) c...

Subset a data frame with specific date
ani jaya · Jan 13, 2020 · r-help

Good morning R-Help, I have a dataframe with 7 columns and 10000+ rows. I want to subset/extract those data frame with specific date (not in order). Here the head of my data frame: head(mjo30) year month date...

getting data from an nc file
ani jaya · Nov 9, 2022 · r-sig-geo

Maybe you are looking for something like this: nc_data<-nc_open("chess-met_precip_gb_1km_daily_20150101-20150131.nc") lon<-lon<-nc_data$dim$LON$vals lat<-nc_data$dim$LAT$vals or lon<-ncvar_get(nc_data...

unexpected (?) behavior of box()
ani jaya · Jan 7, 2022 · r-help

Hi Jim, Thank you for the alternative. Absolutely will try it. Can you explain a bit about "Maps draws an approximately 2x1 plot"? Is it the size proportion 2 in x-axis and 1 in y-axis? On Fri, Jan...

Mapping of countries
ani jaya · Mar 31, 2020 · r-help

Maybe simply add: points(station$Lon, station$Lat, col="red", pch=16, label="Your Country") text(station$Lon, station$Lat,"Your Country", col="black", pos=3, cex=1) station$Lon and Lat in your coordinate position. Regards, Ani On Tue...

Can't find what you're looking for? Try searching with Google .