Displaying 20 results from an estimated 231 matches for "viz".
Did you mean:
via
2009 Jul 07
0
rsync-3.0.6 regression test problems
...e output of "find -ls" for the failures:
HP-UX 11.11:
--- 8< ------ 8< ------ 8< ------ 8< ------ 8< ------ 8< ------ 8< ------ 8< ---
============================================================
/soft/os/rsync/rsync-3.0.6/rsync-3.0.6/runtests.sh running in /scr/viz-hpux/koenig/rsync-3.0.6-1/ARENA/32
rsync_bin=/scr/viz-hpux/koenig/rsync-3.0.6-1/ARENA/32/rsync
srcdir=/soft/os/rsync/rsync-3.0.6/rsync-3.0.6
TLS_ARGS= -L
testuser=koenig
os=HP-UX viz-hpux B.11.11 U 9000/785 2016192404 unlimited-user license
preserve_scratch=no
scratchba...
2010 Apr 07
1
It This data viz possible in R?
Hi All,
I am new to R, but it has been a lot of fun learning as I go and have been blow away by what it can do. Came across this example and wanted to see if ggplot2 or some other visualization package could make this sort of graphic.
2013 Aug 21
2
[LLVMdev] PrescheduleNodesWithMultipleUses() causing failure in PickNodeToScheduleBottomUp() ???
...^
|
When there are two successors of PredSU with type getCallFrameDestroyOpcode and there is order between them,
if the successor of the two's matching getCallFrameSetupOpcode is a predecessor of SU,
if the dependency is routed through SU, there will be a dead lock.
Viz:
Destroy PredSU Destroy
^ ^ ^
| | |
| | |
SetUp-------> SU --------
^ ^ ^
| | |
| | |
----------- | |
| | |
Setup
^...
2013 Mar 28
6
How to delete Identical columns
...I have a large data.frame and can't make out which columns are identical, but I am sure that column with name say x is repeated as x.1, x.2 etc.
How to automatically identify and retain only one column (in this example column x) among the identical columns besides other non-identical columns (viz. id, y and z).
Regards
Katherine
[[alternative HTML version deleted]]
2004 Nov 17
4
summary.lme() vs. anova.lme()
...nc) over time (d) for individuals
(replicate) given one of three treatments (treatment) using:
mconc.lme <- lme(mconc~treatment*poly(d,2), random=~poly(d,2)|replicate,
data=my.data)
summary(mconc.lme) shows that the linear coefficient of one of the
treatments is significantly different to zero, viz.
Value Std.Error DF t-value p-value
... ... ... ...
...
treatmentf:poly(d, 2)1 1.3058562 0.5072409 315 2.574430 0.0105
But anova(mconc.lme) gives a non-significant result for the treatment*time
interaction, viz.
numDF denDF F-...
2008 Feb 25
1
How do I use as.Date when day values are missing?
I have a data frame which contains some valuable date information. But for a few of the dates, the day information missing .
Viz:
> interesting.data$date
[1] "1/22/93" "1/22/93" "1/23/93" "1/00/93" "1/28/93" "1/31/93" "1/12/93"
i.e. for dates where the day info is missing, the "%d" part of the "%m/%d/%yy" format is simply represent...
2013 Aug 22
0
[LLVMdev] PrescheduleNodesWithMultipleUses() causing failure in PickNodeToScheduleBottomUp() ???
...^
|
When there are two successors of PredSU with type getCallFrameDestroyOpcode and there is order between them,
if the successor of the two's matching getCallFrameSetupOpcode is a predecessor of SU,
if the dependency is routed through SU, there will be a dead lock.
Viz:
Destroy PredSU Destroy
^ ^ ^
| | |
| | |
SetUp-------> SU --------
^ ^ ^
| | |
| | |
----------- | |
| | |
Setup
^...
2013 Aug 20
2
[LLVMdev] PrescheduleNodesWithMultipleUses() causing failure in PickNodeToScheduleBottomUp() ???
...#39;m not sure if this is one problem or two - or a target problem passing something dangerous to the scheduler.
Any help would be most welcome.
I have attached the code to exercise the bug - the slightest of perturbation will make it compile fine e.g. add an extra 'undef' argument to f2 viz: double @f2(i32, double, double, double).
This example only fails for xcore targets.
Robert
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130820/f1f42402/attachment.html>
-------------- next part -----...
2010 Dec 23
5
Writing a single output file
...[i], file = paste("output", i, ".csv", sep = ""), row.names = FALSE)
}
Depending on value of 'n', I get different output files.
Suppose n = 3, that means I am having three output csv files viz. 'output1.csv', 'output2.csv' and 'output3.csv'
output1.csv
date yield_rate
12/23/2010 5.25
12/22/2010 5.19
.................................
.................................
output2.csv
date yield_rate
12/23/2010 4.16...
2013 Aug 21
0
[LLVMdev] PrescheduleNodesWithMultipleUses() causing failure in PickNodeToScheduleBottomUp() ???
...uling in the presence of multiple uses")
SU(3)
Predecessors:
val SU(5): Latency=1
ch SU(7): Latency=1
val SU(7): Latency=1
SU(7):
ch SU(3): Latency=1
val SU(3): Latency=1
val SU(5): Latency=1
It looks odd but seems to be fine as all nodes are capable of being scheduled viz:
NumSuccsLeft after each schedule
sched - 0 2 1 3 5 7 6 8 4
SU(0) 0
SU(1) 1 0
SU(2) 1 0
SU(3) 3 2 1 0
SU(4) 1 0
SU(5) 1 0
SU(6) 1 0
SU(7) 3 1 0
SU(8) 1 0
So, the problem comes back to trying to find the physical address of a 'Cal...
2005 Jun 13
3
extracting components of a list
Hi
how do I extract those components of a list that satisfy a certain
requirement? If
jj <- list(list(a=1,b=4:7),list(a=5,b=3:6),list(a=10,b=4:5))
I want just the components of jj that have b[1] ==4 which in this case
would be the first and
third of jj, viz list (jj[[1]],jj[[3]]).
How to do this efficiently?
My only idea was to loop through jj, and set unwanted components to
NULL, but
FAQ 7.1 warns against this.
--
Robin Hankin
Uncertainty Analyst
National Oceanography Centre, Southampton
European Way, Southampton SO14 3ZH, UK
tel 023-805...
2009 Oct 16
1
generalization of tabulate()
...14,] 1 2 2 0
[15,] 0 3 2 0
[16,] 2 0 3 2
[17,] 1 1 3 0
[18,] 0 2 3 0
[19,] 1 0 4 0
[20,] 0 1 4 1
[21,] 0 0 5 0
Thus the 'd' column counts the number of times that each row occurs in
variable 'observation'. So desired[5,4]=2 because the observation
corresponding to desired[5,1:3] (viz c(1,4,0)) occurred twice. And
desired[1,4]=0 because the observation corresponding to desired[1,1:3]
(viz c(5,0,0)) did not occur once (it was not observed).
In my application I have dim(S) ~= c(5,4e6).
I've tried merge(), stack(), reshape(), but the best I can do
is the (derisory):
requir...
1999 Aug 30
3
model.matrix()
...ot;)
[1] 0 1 2 2 2 2 2 2 2 2
whereas in S I get the following:
> attr(i, "assign")
$"(Intercept)":
[1] 1
$x:
[1] 2
$f:
[1] 3 4 5 6 7 8 9 10
Has anybody written a model.matrix function to get the same
result as S? It's just that S's output is what I want, viz.,
1. the names "(Intercept)","x","f", and
2. the vector values.
Thanks
Thomas
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "...
2004 Dec 29
3
Windows vignettes, shQuote, texi2dvi
...ws, fptex, does not have texi2dvi
in the first place. The alternative, MiKTeX, is harder
to install than fptex but instructions are available
and it does have an equivalent to texi2dvi called texify.exe;
however, R still does not know about texify.exe
resulting in additional installation hassles,
viz. setting the texi2dvi option or setting up a texi2dvi.bat
file yourself that calls texify.exe or just forgetting
about texi2dvi and manually running the necessary tex commands
when creating vignettes on Windows.
There are also additional problems related to using the
perl package-building scripts...
2006 Aug 19
4
string-to-number
...r subsequent use.
as.numeric(repeated.measures.columns) doesn't work (likely because of the
commas)
[1] NA
Warning message:
NAs introduced by coercion
I've tried many things including
strsplit(repeated.measures.columns, split = ",")
which produces a list with only one element, viz:
[[1]]
[1] "3" "6" "10"
as.numeric() doesn't like that either.
Clearly: 1) I cannot be the first person to attempt this, and 2) I've made
this WAY harder than it is.
Would some kind soul please instruct me (and perhaps subsequent searchers)
how to convert...
2013 Aug 22
2
[LLVMdev] PrescheduleNodesWithMultipleUses() causing failure in PickNodeToScheduleBottomUp() ???
...and one is a successor of the other.
Taking the successor of the two Destroys (Destroy1), noted that it's
matching getCallFrameSetupOpcode (Setup1) is a predecessor of 'SU'.
In this situation, re-routing the dependency on 'PredSU' through 'SU' will
cause a dead lock Viz:
SetUp2 PredSU SetUp1
^ ^ ^
| | |
| | |
Destroy2-----> SU -------
^ ^ ^
| | |
| | |
----------- | |
| | |
Destroy1
^...
2020 May 15
4
edit() doubles backslashes when keep.source=TRUE
...does nobody anymore help R development by working with
"R-devel", or at least then the alpha, beta and the "RC"
(Release Candidate) versions that we release daily for about one
month before the final release?
Notably a highly staffed enterprise such as Rstudio (viz the bug
report 17800 above), but also others could really help by
starting to use the "next version" of R on a routine basis ...
<whining/>
Still: Thank you, of course,
Bill Dunlap, and Sebastian and Jonathan (PR 17800)
Martin
> Am 15.05.20 um 03:50 schrieb Willi...
2012 Sep 23
2
Deciding CentOS version in live production environment
Hi,
Can someone please guide me in deciding which specific CentOS Linux
version viz 5.8 and 6.3 be used in Live production environment. Any
merits and demerits of using either of these versions.
Regards
Kaushal
2001 Mar 01
2
do_exec_pty(..)
Hello,
I see that incase of command execution:
:fork()" is called twice, in sshd.
Once to spin off child sshd from parenat and
second from child sshd, to execute command.
Due to this I see 3 processes being created
for each connection viz:
16398 0.0 0.3 1284 892 ?? S 4:33PM 0:00.05 sshd:child
16399 0.0 0.1 320 232 p4 Is+ 4:33PM 0:00.06 -sh -c foo_command
16401 0.0 0.3 2076 840 p4 S+ 4:33PM 0:00.01 foo_command
I may be missing something, but
I was wondering to why second
fork() is required to execu...
1997 Aug 21
3
R-alpha: a question on terminology
Whereas we typically refer to the add-on `modules' as `libraries' (viz
also the way these are represented in the search list, and the variable
.Libraries), S speaks about `sections'.
Shall we stay with our terminology? Or instead, speak of `sections',
`packages', `modules', ...?
-k
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-...