Displaying 20 results from an estimated 200 matches similar to: "quota severe performace issue help"
2018 Jan 15
2
consolidate three function into one
Hi Richard,
Thank you so much!! I understand the problem now, I assign a name to the "ggsurvplot" object and then add print(fig) at bottom of function definition, now figure gets printed on screen.
Ding
# function to generate RFS curves
RFS <- function( inputfile, N ) {
cluster<- survfit(Surv(RFS_days2, OV_Had_a_Recurrence_CODE) ~ clusters,
data =
2018 Jan 14
2
consolidate three function into one
Hi Bert,
I am sorry to bother you on weekend.
I am still struggling on defining a correct function.
I first defined the function RFS (see below), then run it by provide the two argument.
m52.2cluster <-RFS(inputfile =allinfo_m52, N=2 )
I do not get error message, but no figure displays on screen. I do not know what is going on.
Can you help me a little more on this issue?
Thank you,
2007 Apr 10
1
Several clusters in the same matchine
Hi,
is it possible to have several ocfs2 clusters in the same machine?
We have webserver1 and webserver2 that should belong to cluster1 and
cluster2 "workgroup".
Cluster1 should be made of webserver1, webserver2 and application_server1
Cluster2 should be made of webserver1, webserver2 and application_server2
Is this possible?
Thanks,
Nuno Fernandes
2018 Jan 14
0
consolidate three function into one
FAQ 7.22
You must print a ggplot object, for example with
print(m52.2cluster)
For the FAQ, run the line
system.file("../../doc/FAQ")
in R on your computer.
Open up the resulting filepath in your favorite editor and scroll down to 7.22
On Sun, Jan 14, 2018 at 4:21 PM, Ding, Yuan Chun <ycding at coh.org> wrote:
> Hi Bert,
>
> I am sorry to bother you on weekend.
>
2004 Apr 12
2
FW: cluster1 error
I am trying to use:
ocfs-support-1.0.10-1
ocfs-2.4.21-EL-smp-1.0.11-1
ocfs-tools-1.0.10-1
with RedHat AS 3.0, 2-node cluster with shared SCSI. 2 dell 1650s, dual
CPUs, PERC 3/DC cards chained to a PowerVault 220S.
I am using lvm, and here is my layout:
[root@cluster1 archive]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda2 32G 5.1G 25G
2018 Jan 15
0
consolidate three function into one
That is certainly OK, but you can also just use
print(ggsurvplot(...))
as your final statement.
out <- RFS( ...)
would then return the ggsurvplot object *and* graph it.
Any good R tutorial or a web search will provide more details on function
returns, which you might find useful.
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along and
2018 Jan 15
1
consolidate three function into one
Thank you, your suggestion is simpler and logically better. I had impression that the last object in a function gets returned, so I did not add the print function at the bottom line of the function definition. Returning an object and graph the object are different process, I am a beginner for writing R function and need to find a good guide source about writing R functions. If you know a good
2005 Sep 21
2
locking.tdb: expand_file ftruncate to 8192 failed (Permission denied)
Hi,
I'm hunting a bug in 3.0.x (tested on 3.0.10 and 3.0.20). Users can
create and modfy files, but cannot delete them. The logs show
[2005/09/21 20:48:14, 0, pid=18388, effective(4019, 412), real(4019, 0)] tdb/tdbutil.c:tdb_log(767)
tdb(/srv/physik.fu-berlin.de/data/.samba/cluster1-test/cache/locking.tdb): expand_file ftruncate to 8192 failed (Permission denied)
[2005/09/21 20:48:15, 0,
2009 Feb 01
2
Using arrays to generate parameters
My external node classifier returns some arrays in the list of
parameters. Example output (names have been changed to protect the
innocent):
$ ./node_classifier a.b.com
--- %YAML:1.0
"classes": ["class1", "class2", "class3"]
"parameters":
"hostname": "a"
"name": "a"
"domain":
2016 Apr 12
1
Dissimilarity matrix and number clusters determination
Hi,
I already have a dissimilarity matrix and I am submitting the results to
the elbow.obj method to get an optimal number of clusters. Am I reading
the below output correctly that I should have 17 clusters?
code:
top150 <- sampleset[1:150,]
{cluster1 <- daisy(top150
, metric = c("gower")
, stand = TRUE
, type = list(symm
2004 Mar 31
4
Removing leading and trailing spaces (string manipulation)
Hi all,
I'm running the following code to generate 40 different jpegs based on the resulting data. I'd like the file names to be 'Cluster1.jpeg', however the code write filenames like 'Cluster 1 .jpeg'.
How can I get rid of the unwanted spaces? I've looked at ?format and it doesn't seem to work - at least in this context.
###################
ClusCount <- 40
2002 May 24
1
Fisher
Hello.
I had a big collection of Web pages. Now I have this collection divided into
clusters. Every page can be relevant or not. I made a table:
relevant non relevant
cluster1 1 20
cluster2 0 15
cluster3 3 35
. . .
. . .
. . .
I cluster1 I have 21 Web pages, 1
2008 Jul 07
2
Colour clusters in a 2d plot
R experts,
I have three columns. c1 and c2 are numeric variables whereas c3 are the
clusters classes (nominal variable, 10 different: cluster1, cluster2,
cluster3, cluster4, cluster5 ....). I'd like to plot c1 against c2 (easy!)
in a 2D plot and put different color depending to the cluster class
automatically regardless the number of clusters.
Could anyone give a hand?
Josep Maria,
matrix
2005 Jun 01
1
Re: ocfs2 and configfs.ko..fixed...but gnuparted has issues....
I was able to get the source code for ocfs2 and compile it. This worked and created the necessary .ko files
Now I have to figure out why gnu parted 1.6.15 has bugs. when I try a partprobe on a partitioned firewire maxtor drive
mount -t ocfs2 /dev/sdb1 /u01/oradata/orcl
It says no such device....
Any ideas anyone?...
Regards,
Mandar Vengurlekar
----- Original Message -----
From: Mandar P
2012 Mar 23
1
how to cluster rows of words in a text file
Hi:
I am trying to cluster the rows of a text file with kmeans:
I load the data as follows
file1 <- read.csv("somefile.csv")
and the file can be viewed having the following line of words
> file1
1 word1 word3 word4 word1
2 word1 word4 word3 word1
3 word4 word2 word4 word3
4 word4 word2 word1 word3
5 word2 word2 word4 word2
file_as_matrix <- as.matrix(file1);
Now,
2006 Apr 20
1
Parallel computing with the snow package: external file I/O possible?
Hello,
After getting help to solve part of my problem and some delay on my
part, I am posting a more refined version to see if someone can help me
further. I am trying to autocalibrate a model in my subject area using
the snow and rgenoud packages. I want to use the key function "fn" that
is called by genoud() to finalize input, run the model executable, and
compute the objective
2020 Feb 20
5
GPO redirected folders reg path issue
We are not much off. But you have mixed "samba/window" and "windows/windows" settings.
Samba/windows \\%logonserver%\home\%username%\desktop
Windows/windows \\hostname.fqdn.tld\users\%username%\desktop
Guess, which one i use. ;-)
Now, do get where this is coming from.
So use this (add CNAME for you member server ), Note, you MUST setup PTR records.
2006 Mar 13
1
Parallel computing with the snow package: external file I/O possible?
Hello,
I am trying to do model autocalibration using the snow and rgenoud
packages. The function I want to run in task-parallel fashion across
multiple machines is one that pre- and post-processes data and runs an
external model code. My problem is that external file I/O is happening
only in the master node and not in the slaves. I have followed Jasjeet
Sekhon's suggestion to test the
2020 Feb 26
2
GPO redirected folders reg path issue
On Thu, Feb 20, 2020 at 10:56 AM L.P.H. van Belle via samba <
samba at lists.samba.org> wrote:
>
> A setup on howto improve your samba network and simplify it.
> This is how i setup, sure looks dificult but its all about DNS setup and
> what you add to it.
>
> For AD-DC.s ( AD, TIME, NS, LDAP )
> Hostname.FQDN.TLD : max 63chars, incl the .'s allowed chars: a-Z 0-9
2007 Feb 06
2
Network 10 sec timeout setting?
Hello!
Hey didnt a setting for the 10 second network timeout get into the
2.6.20 kernel?
if so how do we set this?
I am getting
OCFS2 1.3.3
(2201,0):o2net_connect_expired:1547 ERROR: no connection established
with node 1 after 10.0 seconds, giving up and returning errors.
(2458,0):dlm_request_join:802 ERROR: status = -107
(2458,0):dlm_try_to_join_domain:950 ERROR: status = -107