search for: bulkdensity

Displaying 3 results from an estimated 3 matches for "bulkdensity".

2010 Jun 21
2
ctree
...DryAve + continHydroWetAve + DCHperiodAverage + DCHydroDryAve + threeDayWaterDepthMinAve + threeDayWaterDepthMaxAve + sevenDayDryFreqAve + sevenDayWaterDepthMaxAve + sevenDayWaterDepthMinAve + seventeenDayWaterDepMaxAve + seventeenDayWaterDepMinAve + thirtyoneDayWaterDepthMaxAve + wetIntensityAve + BulkDensity + LOI + TP + TN + TC + Total_Mg, data = Marsh) plot(Marshct) Working in Windows XP with R2.11.1 (2010-05-31) Thanks Steve Steve Friedman Ph. D. Spatial Statistical Analyst Everglades and Dry Tortugas National Park 950 N Krome Ave (3rd Floor) Homestead, Florida 33034 Steve_Friedman at nps.gov...
2010 Jul 08
1
Data format question for triangle.plot package ade4
...evelop a triangle plot but am having difficultly assigning the row.names to the 3 columns in the data.frame Here is what I've done, attach(SoilVegHydro) dim(SoilVegHydro) 1292 39 # now take 3 variables from main data.frame for plotting dat <- cbind.data.frame(TP, meanAnnualDepthAve, BulkDensity) # These are variables held in the data frame SoilVegHydro row.names(dat) <- paste(row.names(SoilVegHydro$Physiogomy), rep(c(1,2,3), rep(1292, 3)), sep =" ") # following the syntax from the help triangle.plot page this is returned when the last line is submitted. row.names(dat) &...
2010 Jun 25
1
variograms and kriging
Hello Trying to develop variograms and kriged surfaces from a point file. Here is what I've done so far. library(gstat) # also loads library(sp) library(lattice) soilpts$x <- soilpts$UTM_X soilpts$y <- soilpts$UTM_Y soil.dat <- subset(soilpts, select=c(x, y, Area, BulkDensity, LOI, TP, TN, TC, Total_Mg)) dim(soil.dat) [1] 1292 7 coordinates(soil.dat) <- ~ x+y gridded(soil.dat) <- TRUE Warning messages: 1: In points2grid(points, tolerance, round, fuzz.tol) : grid has empty column/rows in dimension 1 2: In points2grid(points, tolerance, round, fuzz.tol) :...