search for: catchment_

Displaying 2 results from an estimated 2 matches for "catchment_".

Did you mean: catchment
2010 May 12
2
sorting rows of dataframe
Hello: I have a dataframe, where the first column in a month: Month CATCHMENT_ med min max 1 Apr Alknda01 71.68080 11.9406600 196.2753 2 Apr Alknda02 69.44580 12.1065600 196.2753 3 Apr ArialKhan 39.89310 5.8598700 175.4433 4 Apr Arjun01 4.79652 0.0093336 55.7136 5 Apr Arjun02 4.79652 0.0093336 55.7136 6 Apr Arun01 52.42...
2010 May 16
1
problem with making multiple plots (geom_pointrange) in a loop (ggplot2)
...i in 1:length(ganges_subbasin[,1] )){ subbasin_select <- as.character(ganges_subbasin[i, 2]) #print(subbasin_select) subbasin_select <- as.character(ganges_subbasin[i, 2]) p <- ggplot(ganges_subbasin_a2pre_sort ,aes(x = Month, y = med, ymin = min, ymax = max, subset = CATCHMENT_ == subbasin_select)) + ylab("Precipitation (mm)\n") + opts(title = paste("Projected Precipitation 2030 - 2049 (Sub-Basin ", subbasin_select, ")\n", sep = "")) + scale_colour_grey() p + geom_pointrange(linetype = 2, colour = "navyblue") + opts...