similar to: swat help files broken...

Displaying 20 results from an estimated 500 matches similar to: "swat help files broken..."

2005 Aug 20
5
asterisk is working bad
Dear readers, under xen 2.0.5, kernel 2.6.11.4-20a-xen (both suse 9.3) asterisk 1.0.9 could''t replay its sounds. Its sounds very brocken. Without xen it works fine. Would somebody help pls? best regards Stefan _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2001 Sep 30
2
non linear models
Dear Members of the Help List, Honestly, I feel a little bit stupid - I would like to do something rather simple: fit a non linear model to existing data, to be more precise I wanted to start with simple higher order polynomials. Unfortunately, I do not quite understand the examples in the helpfiles for the nlm, nls and nlsModel commands. Could anyone please provide a simple example to get me
2010 Oct 07
2
CTDB with 3 nodes and local disks without a dedicated SAN
Hello, First, sorry, I know that this is by far not 100% samba related but since this setup is exclusively for samba + CTDB and as such is no ordinary setup, I thought it might be good to ask here. I'm having a hard time figuring out how to accomplish the following: I'd like to set up 3 samba nodes clustered with CTDB, with each node/machine having its own sets of local disks. It
2006 Sep 28
1
drop
Hello, What's the best/recommended way to drop the dimension of a data.frame? Probably "test[,,]" but I am not sure. I would prefer an explicit function, but drop doesn't work with frames and I didn't find something in the helpfiles/mailarchive. Example: test <- data.frame( x = 1:7 ) str( drop( test ) ) # still a data.frame str( test[,, drop =
2004 May 03
1
plotting in R
Hi there, I have 2 questions which I cannot find answers for in Dalgaard or the helpfiles currently available. (1) I wish to plot 3 ecdf plots on one graph. Is there any way of holding a figure to plot all on the same plot. I can't get an ecdf for any plot command other than "plot" or "ecdf.plot" so using lower level command is no good, have also tried x11(). (2) If
2006 Apr 26
1
new.frame()
Hello, I would like to know whether R has a homogeneous function of S-plus's new.frame(), which create explicit frames in the evaluator and provide a locale for computations that can be shared among various functions. new.frame() in S-plus: http://www.uni-muenster.de/ZIV/Mitarbeiter/BennoSueselbeck/s-html/helpfiles/new.frame.html Thanks.
2007 Jun 08
1
evaluating variables in the context of a data frame
Given > D = data.frame(o=gl(2,1,4)) this works as I expected: > evalq(o, D) [1] 1 2 1 2 Levels: 1 2 but neither of these does: > f <- function(x, dat) evalq(x, dat) > f(o, D) Error in eval(expr, envir, enclos) : object "o" not found > g <- function(x, dat) eval(x, dat) > g(o, D) Error in eval(x, dat) : object "o" not found What am I doing wrong?
2011 Sep 23
1
Newbie question: Converting Table
Hi, I'm new to R, and I have searched helpfiles and this forum on my 2 questions. Hope you guys can help me out! :-) Many thanks in advance! Cheers, Lars Q1: I imported a csv file with columnames subject and class. There are about 1000 different classes... It looks like this: subject1, class1 subject1, class2 subject2, class1 subject2, class3 ... subject999, class1 subject999, class2
2017 May 18
2
stopifnot() does not stop at first non-TRUE argument
>From an example in http://www.uni-muenster.de/ZIV.BennoSueselbeck/s-html/helpfiles/nargs.html , number of arguments in '...' can be obtained by (function(...)nargs())(...) . I now realize that sys.call() doesn't expand '...' when the function is called with '...'. It just returns the call as is. If 'stopifnot' uses sys.call() instead of match.call() , the
2016 Sep 23
2
Undocumented 'use.names' argument to c()
In S-PLUS 3.4 help on 'c' (http://www.uni-muenster.de/ZIV.BennoSueselbeck/s-html/helpfiles/c.html), there is no 'use.names' argument. Because 'c' is a generic function, I don't think that changing formal arguments is good. In R devel r71344, 'use.names' is not an argument of functions 'c.Date', 'c.POSIXct' and 'c.difftime'. Could
2008 Jun 18
2
embedding R in c++ (Qt) application
Hi R-Developers, I'm working on running statistical analyses with embedded R from a Qt-GUI-application (C++). I've been able to link with R libraries, but I'm having a hard time to understand the C-coding examples. I'm a C++, not a C programmer (never used malloc before), and many of the R-specific functions/keywords/macros (for instance (UN)PROTECT, SETCAR, all the
2013 Jan 14
0
[LLVMdev] OCaml binding: error with the function "has_metadata"
Hi all, I am using the OCaml binding and I get the following error with the function "Llvm.has_metadata": Assertion failed: (isa<X>(Val) && "cast<Ty>() argument of incompatible type!"), function cast, file .../llvm-3.2.src/include/llvm/Support/Casting.h, line 208. Abort trap: 6 I am using the latest 3.2 release from the LLVM download page and this is a
2009 Apr 18
0
udp monitoring and routing manipulation
hi, one problem, one question :) first the problem: tinc establish a tcp-controll connection between nodes. if THIS connection is up, tinc thinks everything is fine. but i had a case that a stupid firewall thought "oh - udp-storm, lets block this". tinc think that id the tcp-connection is file everything is file. but is was not ;( is there a way to monitor the udp-connection and
2017 May 19
1
stopifnot() does not stop at first non-TRUE argument
While you are fiddling with stopifnot(), please consider changing the form of the error thrown so that it includes the caller's call. The change would be from something like stop( <<the message>> ) to stop(simpleError( <<the message>>, sys.call(-1))) For the following code f <- function(x, y) { stopifnot(x > y) x - y } g <- function(x,
2013 Feb 19
2
introducing jitter in overlapping graphs using ggplots (plotmeans). Also sciplot.
Hi, I want to plot means with standard deviations of Total Nitrogen (TN) across 4 stations (S1-S4) and over 3 years (2007-2009). I want this plot in one panel. I do not want medians (bwplot, boxplot). I have tried a few different packages and it seems that ggplots with plotmeans was the fastest (I am not extremely skilled in writing my own scripts). Unfortunately, there is no grouping
2016 Sep 23
2
Undocumented 'use.names' argument to c()
I'd vote for it to stay. It could of course suprise someone who'd expect c(list(a=1), b=2, use.names = FALSE) to generate list(a=1, b=2, use.names=FALSE). On the upside, is the performance gain from using use.names=FALSE. Below benchmarks show that the combining of the names attributes themselves takes ~20-25 times longer than the combining of the integers themselves. Also, at no
2006 Jun 22
4
Latest CVS: no fonts?
Is this bug 5057? ... I've just installed the latest version of wine from CVS and created a new .wine directory. Upon running winecfg, there are no letters on any of the buttons or tabs. After reading the text of bug 5057, I checked .wine/drive_c/windows/fonts and there are no files. I copied and pasted all of the font files from the equivalent location in one of my backups to this
2008 Dec 17
4
vim helpfile tag issues
Just wondering if anyone can replicate this issue.... On CentOS 5.2, using vim 7.0.237, I'm having a consistent issue across all my centos boxen. if I try and access the help files direct (as root), such as ":help tutor" I get: "usr_01.txt.gz" [readonly][noeol][converted] 11L, 4393C E434: Can't find tag pattern Press ENTER or type command to continue If I press
2008 May 10
1
BiodiversityRGUI_problem2
After some investigation I found out that constrained ordination is working fine under R version 6.5.0 and 6.5.1 but not under any of newer versions. Is it posible to repair/make something in for example newest version of R 7.0 lito enble correct using of constrained ordination under BiodiversityRGUI environment? [[alternative HTML version deleted]]
2010 Jul 28
1
randomisation for matrix
Hi to all, I am looking for a randomisation procedure for a single matrix, including a possibility to set the number of randomisations and the to set the number of row and columns . Knut