Displaying 2 results from an estimated 2 matches for "rv_data".
Did you mean:
r_data
2010 Mar 24
1
install ncdf package
...ric -c ncdf3.c -o ncdf3.o
ncdf3.c: In function ?R_nc_get_vara_charvarid?:
ncdf3.c:221: warning: assignment discards qualifiers from pointer target
type
ncdf3.c: In function ?R_nc_get_vara_numvarid?:
ncdf3.c:267: warning: assignment discards qualifiers from pointer target
type
ncdf3.c:249: warning: ?rv_data? may be used uninitialized in this function
gcc -m64 -std=gnu99 -I/usr/include/R -I. -I/usr/local/include -fpic -O2
-g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector
--param=ssp-buffer-size=4 -m64 -mtune=generic -c ncdf.c -o ncdf.o
ncdf.c: In function ?R_nc_get_vara_double?:...
2007 Aug 20
1
rv package, rvnorm function
...ul, is my R file:
****R file begins here **************************
# This is a file of R commands to test Kerman and Gelman's package rv.
# It is based on their "Using Random Variables to Manipulate and
# Summarize Simulations in R,", July 4, 2007.
testscores <- read.table("rv_data.txt",header=TRUE) # Extract data.
attach(testscores) # Put testscores in R search path
testscores[1:2,] # Print first 2 observations
testscores[14:15,] # Print last 2 observations
x <- testscores[,1] # midterm scores
y <- testscores[,2] # final exam scores
testlm <- lm(y ~ x) #...