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.
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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 .