Displaying 2 results from an estimated 2 matches for "chararact".
Did you mean:
charact
2002 Aug 23
2
row.names - problem with vers. 1.4.1
Hi,
need a little help:
I want to handle a file with a first column like this:
...
27.10.98
28.10.98
29.10.98
...
In vers. 1.5.1 I can use a statement like:
# load daily
prices
prices<-as.matrix(read.table(paste(path,"prices",date,".txt",sep=""),row.names=1,header=T))
In ves. 1.4.1 R generates an ERROR:
Error in "row.names<-.data.frame"(*tmp*,
2011 Jan 07
1
[RFC/PATCH] ssh: config directive to modify the local environment
...uot;
LocalEnvMod FOO += bar
# unset FOO
LocalEnvMod FOO =
# append foo to BAR with separator ":", if BAR is empty no separator will
# be used
LocalEnvMod BAR +:= foo
# prepend baz to BAR with separator ":"
LocalEnvMod BAR %:= baz
Currently any chararacter can be used as separator.
My intended use case for this is to automount arbitrary remote directories
via sshfs based on the host by the mux master via LocalCommand. I have a
default of 'mount the remote home at ~/Remotes/<host>' but I can add more
mount directives based on individu...