Displaying 20 results from an estimated 10000 matches similar to: "help.start() web page contains a bad link"
2014 Sep 30
1
R's internal tar ignores files in sub-directories
E.g. I am seeing:
dir <- file.path(tempdir(), "test-tar")
dir.create(dir)
setwd(dir)
dir.create("foo", showWarnings = FALSE)
file.create("foo/bar.R")
tar("test.tar", files = "foo/bar.R")
dir.create("untarred")
untar("test.tar", exdir = "untarred")
2014 Jun 12
1
do.call Error for Function Not Present When Manually Called
Hello,
The e1071 function naiveBayes gives an error when called by do.call, although it doesn't give any error if I call it manually.
Browse[1]> trainParams at classifier
function (x, ...)
UseMethod("naiveBayes")
<environment: namespace:e1071>
Browse[1]> trained <- do.call(trainParams at classifier, paramList)
Error in names(dimnames(tables[[i]])) <- c(Yname,
2014 Aug 22
3
parallel::detectCores(TRUE) gives: Error in system(cmd, TRUE) : error in running command
Hi,
Both under the current R-devel (r66456) and a version from about 3
months ago, I experience the following behavior:
> parallel::detectCores(TRUE)
Error in system(cmd, TRUE) : error in running command
> traceback()
3: system(cmd, TRUE)
2: gsub("^ +", "", system(cmd, TRUE)[1])
1: parallel::detectCores(TRUE)
>
This is on Ubuntu 14.04. Does anybody else see this? [I
2014 Aug 05
0
Minor documentation change for assign
Good afternoon,
Today I was reading the documentation
,----
| help('<<-');
`----
.
The passage (I added the asterisks)
The operators '' are normally only used in functions, and
cause a search *to* made through parent environments for an
existing definition of the variable being assigned. If such
a
looks like it might have wanted to have been
2014 Aug 10
1
How to redefine `require' to generate a warning and delegate work to the original require?
Good afternoon,
My goal is to warn the user any time that they use the `require'
function. The reason is that they probably wanted to use `library'
instead. There is a case where they should use the former though, so I
just want to issue a warning.
My approach was to:
? Re-bind `require' to `original.require'
? Re-implement `require' to
? Warn the user
? Delegate the real
2014 Aug 05
1
More than one package document with the same name
Hi,
I sent this to the Bioconductor mailing list (q.v.), replies recommended this forum. Here it is:
A suggestion. Typically a package provides documentation of two types, one or more vignettes and a reference manual; and they have the same file name, PackageName.pdf. When downloaded some file name manipulation is required, or accept PackageName(1).pdf.
I suggest the documents be given
2005 Sep 19
4
Is it bad for my web document folder to be user accessible?
PHP and MySQL seem to working on my CentOS installation.
I'd like to install phpMyAdmin as well, so I downloaded the necessary
files from phpMyAdmin's homepage and copied them to /var/www/html...
... except that's where the process stopped. My regular user account
doesn't have permission to write into the /var/www/html folder.
Should I just chmod the folder to 777? Is there a
2008 Nov 13
3
Virtual NICs (aliases like eth0:1) won't come up after reboot
With one problem down I still have another remaining. Since the
installation of our primairy webserver we have had a problem with the
network aliasses.
Our server has 8 IP adresses so we used the tool provided in the GUI to
specify (and name - for our own convinience) eth0 aliasses with the
other 7 adresses. After setting them up, applying them, activating them
and restarting
2004 Aug 06
3
libspeex/SSE Intrinsics with GCC 3.3.x
Here is code to add to configure.in to do what you want. It preserves
CFLAGS and uses that var to hold the sse enable flags. You can subset this
under the exisiting AC_ARG for sse or just make it do it all the time. If
you notice the i?86, that means any x86 platform target will have it
enabled. You can change that i686, but keep in mind that some distros
compile/target for i386 on the glibc
2013 May 08
0
subsetting by name is very slow when subscript contains a lot of "invalid" names
Hi,
Note sure why but subsetting by name is *very* slow when the character
vector used as subscript contains a lot of "invalid" names:
x <- c(A=10L, B=20L, C=30L)
subscript <- c(LETTERS[1:3], sprintf("ID%05d", 1:150000))
> system.time(y1 <- x[subscript])
user system elapsed
111.991 0.000 112.230
Since subsetting by name is basically
2019 Jun 05
6
Open a file which name contains a tilde
Hi,
As I can see via path.expand a filename which contains a tilde anywhere gets automatically crippled.
+> path.expand("a ~ b")
[1] "a /home/user b"
+> path.expand("a ~ b ~")
[1] "a /home/user b /home/user"
I want to open a file regardless whether its name contains any character unless 0.
The unix filesystem allow the creation of such files, it
2019 Jun 05
6
Open a file which name contains a tilde
Hi,
As I can see via path.expand a filename which contains a tilde anywhere gets automatically crippled.
+> path.expand("a ~ b")
[1] "a /home/user b"
+> path.expand("a ~ b ~")
[1] "a /home/user b /home/user"
I want to open a file regardless whether its name contains any character unless 0.
The unix filesystem allow the creation of such files, it
2018 Feb 06
4
GPOs not Working!
Hello,
i have a testing environment, 2 DCs Ubuntu 18.04, SAMBA 4.7.4 - MIT
Kerberos (clean, not upgraded). I just wan to create/activating a simple
GPOs.
# Interactive logon: Do not require CTRL + ALT + DEL -> activate
# Interactive login: Do not displa last user name -> activate
When im activating this Policys (no errors or something like that)
nothing happend.
I reboot two Domain
2011 Apr 30
3
indexing into a data.frame using another data.frame that also contains values for replacement
Hello all,
I have a quandry I have been scratching my head about for a
while. I've searched the manual and the web and have not been able to
find an acceptable result, so I am hoping for some help.
I have two data frames and I want to index into the first using
the second, and replace the specific values I have indexed with more
values from the second data.frame. I can do this
2004 Aug 06
4
libspeex/SSE Intrinsics with GCC 3.3.x
When compiling Speex 1.1.4 with GCC 3.3.2, the option -msse must be
added to the CFLAGS in libspeex/Makefile.
GCC 3.1.1 added a new option "-msse" (see
http://gcc.gnu.org/gcc-3.1/changes.html , specifically under "New
Targets and Target Specific Improvements") to enable SSE instructions
within the compiler's output (for appropriate architectures).
Compiling speex on
2006 Jun 22
2
ZFS throttling - how does it work?
Hi zfs-discuss,
I have some questions about throttling on ZFS
1) I know that throttling is activating while one sync is waiting for another. (http://blogs.sun.com/roller/page/roch?entry=the_dynamics_of_zfs)
Is it possible to throttle only selected processes (e.g. nfsd) ?
2) How can I obtain some statistics about it? I want to know how often throttling is activating on my host etc.
3) Is it
2013 May 30
2
[LLVMdev] Activating MIPS Code Emitter.
Hi Jim,
The idea of reducing the switching activity between the instructions works by reducing the hamming distance between tow consecutive binary strings across the basic block, or reducing the number of the different bits between two consecutive instructions. This is why I need the exact complete encoding in plain 0’s and 1’s, to be as precise as possible during the scheduling process. I did
2013 May 30
0
[LLVMdev] Activating MIPS Code Emitter.
On May 30, 2013, at 11:35 AM, Jafar J <pluck90 at hotmail.com> wrote:
> Hi Jim,
>
> The idea of reducing the switching activity between the instructions works by reducing the hamming distance between tow consecutive binary strings across the basic block, or reducing the number of the different bits between two consecutive instructions. This is why I need the exact complete
2013 May 30
2
[LLVMdev] Activating MIPS Code Emitter.
Yes your absolutely right, the Opcode and the Operands in each machine instruction are sufficient to generate the final binary representation of the MachineInstruction but not exactly. If you take a look at the format of each MIPS instruction, you’ll see that there are some fixed bits for each instruction which are not available inside the machine instruction object –From what I saw so far-.
2013 May 30
0
[LLVMdev] Activating MIPS Code Emitter.
Hi Jafar,
That’s not quite what I meant. Why do you need to know the exact encoding at all? The instruction opcode+operands should have all the semantic information you need without ever looking at the actual encoding.
-Jim
On May 30, 2013, at 11:08 AM, Jafar J <pluck90 at hotmail.com> wrote:
> Yes your absolutely right, the Opcode and the Operands in each machine instruction are