Displaying 4 results from an estimated 4 matches for "nsaving".
Did you mean:
saving
2009 Mar 31
1
error during DPpackage compilation
Dear All,
I've had trouble compiling DPpackage as a user in one system. It works fine
as root in other machines.
I can see any clues in error messages My guess is that it is a permissions
matter.
Any help is appreciated.
OS: Linux
Kernel: 2.6.27 SMP
Arch: Intel 64 bits
gfortran not available
Thank you.
----------------------><8-------------------------------------
g77 ? -fpic ?-g
2009 Jun 30
2
[PATCH node] Make all yes/no prompts consistent. rhbz#508778
...intf "\n"
printf "\n"
while true; do
- read -p "Is this correct (Y/N/A)? "
- r=$(echo $REPLY|tr '[[:lower:]]' '[[:upper:]]')
- if [ "$r" == "Y" ]; then
- printf "\nSaving configuration.\n"
- if [[ -n "$collectd_server_ip" ]] &&
- [[ -n "$collectd_server_port" ]]; then
- ovirt_collectd $collectd_server_ip \
- $collectd_server_port
- fi
-...
2009 Feb 21
0
density estimation for d>2 for the DPpackage
Dear List,
I am trying to estimate a 3 dimensional density through the DPpackage.
For example
# model
sigma <- matrix(c(0.1,0.05,0.05,0.05,0.1,0.05,0.05,0.05,0.1), ncol=3)
rnormm<- rmvnorm(n=100, mean=c(5,100,150), sigma=sigma)
sigma2 <- matrix(c(10,0.05,0.05,0.05,10,0.05,0.05,0.05,10), ncol=3)
rnormm2<- rmvnorm(n=100, mean=c(20,1,110), sigma=sigma)
rnormm<-rbind(rnormm,rnormm2)
2014 Apr 29
1
access environment in which an error occurred
...ent down in the stack
where the error actually occurred?
I know about the dump.frames()
function which somehow does not work this case. I have implemented
something like:
dump.frames.mod = function(file.name, file.results)
{
file.name.error = 'dummy'
cat(paste('\nSaving workspace to file: \n', file.name.error,
'.rda\n', sep=''))
dump.frames(dumpto = file.name.error, to.file = TRUE)
quit(save = 'no', status = 10)
}
options(error = quote({dump.frames.mod()}))
This, however, seems to hang my R session in case of an...