Displaying 20 results from an estimated 10000 matches similar to: "Dim strSource As String ."
2009 Oct 28
2
vnc for non-root
At work I've been asked to set up vnc for a remote user (a vendor
sysadmin to install 3d party software we've purchased). Of course I'm a
bit skittish about allowing root access to this. Is there a way to
configure vnc so that root cannot log in through it...? Or do I have to
use some other utility to deny root access (e.g., securetty).
Thanks, folks.
--
War is a failure of the
2010 Sep 08
2
subbing a string vector for another string vector
I have a data frame with two columns:
image pattern
1 http://$IMAGE_ID$ www.url.com/image.jpg
2 $IMAGE_ID$ http://www.blah.com/image.gif
...
I want to replace "$IMAGE_ID$" with the corresponding entry in the pattern
column such that the result would appear as follows:
url
http://www.url.com/image.jpg
2006 Apr 23
3
ANN: Polygons library + sweet demo
Hello!
I''m releasing an extraction from an application I''m currently working
on. It''s a small library for dealing with points and polygons, called
Polygons. It really just implements some textbook algorithms w/
Prototype-style JavaScript classes. Check it out here:
http://polygons.mdaines.com/
The demo on that page (Firefox/Safari only right now) uses the
2007 Apr 18
0
turnaround
Skipped content of type multipart/alternative-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/gif
Size: 8092 bytes
Desc: not available
Url : http://lists.linux-foundation.org/pipermail/virtualization/attachments/20070319/dce86a16/attachment.gif
2007 Apr 18
0
We will hit it in there when we feel the songs are done.
Skipped content of type multipart/alternative-------------- next part -----=
---------
A non-text attachment was scrubbed...
Name: not available
Type: image/gif
Size: 13062 bytes
Desc: not available
Url : http://lists.linux-foundation.org/pipermail/virtualization/attachment=
s/20070319/0847a58e/attachment.gif
2007 Apr 18
0
( Permalink ) W3C Expands Support for Speech Synthesis of World Languages 2007-01-10: W3C took steps today to broaden support for the world's languages in voice applications on the Web.
Skipped content of type multipart/alternative-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/gif
Size: 11660 bytes
Desc: not available
Url : http://lists.linux-foundation.org/pipermail/virtualization/attachments/20070319/5bd4b504/attachment.gif
2007 Apr 18
0
turnaround
Skipped content of type multipart/alternative-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/gif
Size: 8092 bytes
Desc: not available
Url : http://lists.linux-foundation.org/pipermail/virtualization/attachments/20070319/dce86a16/attachment.gif
2007 Apr 18
0
We will hit it in there when we feel the songs are done.
Skipped content of type multipart/alternative-------------- next part -----=
---------
A non-text attachment was scrubbed...
Name: not available
Type: image/gif
Size: 13062 bytes
Desc: not available
Url : http://lists.linux-foundation.org/pipermail/virtualization/attachment=
s/20070319/0847a58e/attachment.gif
2007 Apr 18
0
( Permalink ) W3C Expands Support for Speech Synthesis of World Languages 2007-01-10: W3C took steps today to broaden support for the world's languages in voice applications on the Web.
Skipped content of type multipart/alternative-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/gif
Size: 11660 bytes
Desc: not available
Url : http://lists.linux-foundation.org/pipermail/virtualization/attachments/20070319/5bd4b504/attachment.gif
2023 Oct 29
1
dim<-() changed in R-devel; no longer removing "dimnames" when doing dim(x) <- dim(x)
Hello,
the fix of PR18612 (https://bugs.r-project.org/show_bug.cgi?id=18612)
in r85380 (https://github.com/wch/r-source/commit/2653cc6203fce4c48874111c75bbccac3ac4e803)
caused a change in `dim<-()`. Specifically, in the past, any
`dim<-()` assignment would _always_ remove "dimnames" and "names"
attributes per help("dim"):
The replacement method changes
2023 Oct 30
2
dim<-() changed in R-devel; no longer removing "dimnames" when doing dim(x) <- dim(x)
>>>>> Henrik Bengtsson
>>>>> on Sun, 29 Oct 2023 10:42:19 -0700 writes:
> Hello,
> the fix of PR18612
> (https://bugs.r-project.org/show_bug.cgi?id=18612) in
> r85380
> (https://github.com/wch/r-source/commit/2653cc6203fce4c48874111c75bbccac3ac4e803)
> caused a change in `dim<-()`. Specifically, in the past,
2019 Nov 27
2
ELF string table access in backend
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20191127/dc214059/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 201911271044539_EW9BEWXX
Type: application/octet-stream
Size: 13168 bytes
Desc: not available
URL:
2023 Oct 31
1
dim<-() changed in R-devel; no longer removing "dimnames" when doing dim(x) <- dim(x)
Hi Martin, Henrik,
I actually like this change.
Makes a lot of sense IMO that dim(x) <- dim(x) be a no-op, or, more
generally, that foo(x) <- foo(x) be a no-op for any setter/getter combo.
FWIW S4Arrays::set_dim() does that too. It also preserves the dimnames
if the right value is only adding or dropping outermost (ineffective)
dimensions:
??? > x <- array(1:6, dim=c(2,3,1),
2011 Oct 31
1
Error in dim(data) <- dim : attempt to set an attribute on NULL.
This post has NOT been accepted by the mailing list yet.
Hi,
I'm passing the input parameters and calculating the linear regression.
some time i'm getting the error
Error in dim(data) <- dim : attempt to set an attribute on NULL.
But when i restart my R studio, then it runs.
Please help to resolve this problem.
My code looks like
dataset <-
2014 Nov 15
1
Error "promise already under evaluation ..." with function(x, dim=dim(x))
I've meant to ask the following for several years now. I understand why:
> foo <- function(x, dim=dim) { dim }
> foo(1)
Error in foo(1) :
promise already under evaluation: recursive default argument
reference or earlier problems?
gives an error, but why wouldn't/couldn't the following work?
> foo <- function(x, dim=dim(x)) { dim }
> foo(1)
Error in foo(1) :
2012 Jun 04
2
Convert 2-dim array to 3-dim array
Hello R-users,
I'd like to load data from a CSV-file to a 3-dimensional array. However
the default seems to be 2-dimensional. It would also be ok to load the
data and then convert it to a 3-dimensional structure.
I've been trying:
dat = read.csv(filename)
myArr = as.array(dat, dim = c(12,100,3))
However, I get an error message:
Error in `dimnames<-.data.frame`(`*tmp*`,
2009 Feb 12
0
Error Message: Error in dim(data) <- dim : attempt to set an attribute on NULL
I have the following code, from which I get the following error message:
Error in dim(data) <- dim : attempt to set an attribute on NULL
I think the error is coming from the part of my code in BOLD RED. The script works fine until then.
#Load libraries
source("http://bioconductor.org/biocLite.R")
biocLite()
library(limma)
library(Biobase)
#change directory to folder where
2018 Aug 31
2
Argument 'dim' misspelled in error message
Hi,
The following error message misspells the name of
the 'dim' argument:
> array(integer(0), dim=integer(0))
Error in array(integer(0), dim = integer(0)) :
'dims' cannot be of length 0
The name of the argument is 'dim' not 'dims':
> args(array)
function (data = NA, dim = length(data), dimnames = NULL)
NULL
Cheers,
H.
--
Herv? Pag?s
1999 Feb 17
1
dim enquiry
This is a minor question, but is there any difference between the two
objects
fred <- structure(1:10, dim = c(2,5))
and
fred <- structure(1:10, .Dim = c(2,5))
Should I be using one rather than the other? Thanks, Jonathan.
Jonathan Rougier Science Laboratories
Department of Mathematical Sciences South Road
University of Durham Durham DH1 3LE
2014 Nov 24
1
Error "promise already under evaluation ..." with function(x, dim=dim(x))
On Sat, Nov 15, 2014 at 1:47 AM, Duncan Murdoch
<murdoch.duncan at gmail.com> wrote:
>
> On 14/11/2014, 9:06 PM, Henrik Bengtsson wrote:
> > I've meant to ask the following for several years now. I understand why:
> >
> >> foo <- function(x, dim=dim) { dim }
> >> foo(1)
> > Error in foo(1) :
> > promise already under evaluation: