Displaying 20 results from an estimated 2000 matches similar to: "Error in R-Intro document (PR#13079)"
2013 Oct 30
1
ggplot2 question: keeping the order as in the input data
Hello!
I am using ggplot2 (see the code below) to plot the data in 'myplotdata'.
The first column of 'myplotdata' is called "att.levels" and contains
strings; the second column is called "WTP" and contains numeric values.
Notice - I use 'coord.flip()'
The command aes(x=att_levels, y=WTP), if I understand correctly, sorts
things alphabetically based on
2013 Oct 30
1
ggplot2 - how to get rid of bar boarder lines
Hello!
I am using ggplot2:
ggplot(myplotdata, aes(x=att_levels, y=WTP)) +
geom_bar(stat="identity",fill="dark orange",colour="black",
alpha = 1,position = "identity") +
geom_text(aes(label=WTP),colour="black",size=4,hjust=1.1,position='dodge') +
coord_flip() +
xlab("") +
2001 Dec 05
3
Histograms per coding variable
Dear all
I have a dataset that looks like:
fr.wt site
1 4400 glen
2 235 glen
3 225 glen
' ' '
' ' '
' ' '
82 550 glen
83 550 kom
84 550 kom
' ' '
' ' '
' ' '
191 820 kom
192 2000 soet
' ' '
' ' '
I need to do a series of histograms for each of the codes, levels or
factors in
2018 Mar 07
2
Call for Papers: ManLang 2018 (Sept. 10-14, Linz, Austria)
------------------------------------------------------------------------------------------------
CALL FOR PAPERS
15th International Conference on Managed Languages & Runtimes
(ManLang'18)
September 10-14, 2018, Linz, Austria
http://ssw.jku.at/manlang18/
------------------------------------------------------------------------------------------------
ManLang (formerly PPPJ) is a
2012 Nov 21
2
Centos 6 Server has no GUI
I believe I have the exact answer to "Centos 6 Server has no GUI" but I don't see how to attach my answer to that thread.
I am running in Virtual Box on a Windows machine. When I changed my memory available from ? Gb to 1 Gb , and my video memory to 24Mb, my installation script went from an interface reminiscent of MS-DOS in the 80's to a nice GUI installation, and my number of
2018 Mar 12
0
Call for Papers: ManLang 2018 (Sept. 10-14, Linz, Austria)
Dear Person That Posted This Email,
Please be aware that calls for papers are only on-topic for this email
list if they are specifically about LLVM. For example, a call for a
workshop on LLVM in Scientific Computing would be on topic whereas a
general compiler call for papers (like the one below) is not.
That said, I hope you receive many strong submissions. Your conference
looks
2013 May 18
3
bar plot with non-zero starting level
Hi,
I want to plot grouped bars to compare 95% confidence interval estimates
from two models. Each bar represents a 95% confidence interval estimate
of a coefficient from one of the two models. Each group represents
confidence interval estimates of the same coefficient from the two models.
I think such a bar plot will nicely present whether 95% confidence
interval estimates of the same
2004 Sep 04
5
Free WWT (WorldWideTelco): Utopia, or just a matter of organization?
I had this idea, and after looking for something like this already in
progress, I found another guy who tried to start it... But I was
unable to contact him, and his project seems to be dead. But, I
believe it is possible, and I wanted to know the opinion of the
experienced... So, let's go:
I got an asterisk server setup to receive free calls from US to
Brazil. The problem is that at my work,
2001 Mar 19
2
wine.conf newbie problem +user32.dll
I seem to have gotten past one hurdle and on to the next. It seems that the problem that
I was having relates to poorly documented changes in the config files in the HOWTO.
I now have /root/.wine/config which seems to solve the old drive problem. However, here
is my new error.
[root@pato .wine]# cp /etc/wine.conf ~/.winerc
cp: overwrite `/root/.winerc/wine.conf'? y
[root@pato .wine]# wine
2005 Oct 25
6
ipf stopped working on 5.3
I've had ipf working on a few 5.3 servers for quite awhile. Not too long ago
some developers had to do some coding work and were coming from dynamic
IP's. I (reluctantly) opened up SSH to the world. Immediately I started
seeing the attacks where bots of some sort would try to break in with a
variety of different users.
So, I (thought) I closed it up again and told the developers to use a
2007 Dec 21
1
using apply to loop
Hi,
I am running the following loop, but it takes hours to run as n is big. Is there any way "apply" can be used? Thanks.
### Start
nclass <- dim(data)[[2]] - 1
z <- matrix(0, ncol = nclass, nrow = nclass)
n <- dim(data)[[1]]
x <- c(1:nclass)
# loop starts
for(loop in 1:n) {
r <- data[loop, 1:nclass]
classified <- x[r == max(r)]
1997 Oct 30
1
Trick question about broadcast
Hi everyone
I have a rather tricky question. We use skip 1.1.1 between our Suns to
sign the IP trafic. A side effect of that is that the Suns can't see each
other's broadcast. Now I want to set up two samba servers, with and
without encrypted passwords. They must recognice each other, since one of
the severs also is a domain master and they should both be annonunced in a
different subnet.
2001 Mar 17
1
Is there a list of games/applications working with Wine?
...and I'm NOT talking about the list at www.linuxgames.com. It's soooo
outdated.
It's getting really interesting now, and I think many people would like
to know what they can run, and how well it runs.
//Christian
2009 Aug 01
0
[LLVMdev] I add utf8 meta for all html documents:)
* 罗勇刚(Yonggang Luo) <luoyonggang at gmail.com> wrote:
> The patch is for version 77784
> And it's fixed the cmake for eclipse win32 mingw makefile output:)
> Also a warning in VS 2008 on stub.c
> Hope someone apply this patch.
> And those files that place the
> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
> Before
2007 Dec 21
1
using apply to loop [SEC=UNCLASSIFIED]
Hi Louis,
You could try this:
# find the index of the maximum value in each row of _data_, #
disregarding the last column classified <-
apply(data[,-(nclass+1)],1,which.max)
## or, if the maximum may be repeated:
classified <- apply(data[,-(nclass+1)], 1, FUN = function(x) which(x ==
max(x)))
# the variable _truth_ is just the last column of _data_ ?
truth <- data[,nclass + 1]
?table
2012 Oct 07
2
[PATCH] drm/nouveau: fix error handling in core/core object creation functions
Signed-off-by: Marcin Slusarz <marcin.slusarz at gmail.com>
---
This patch relies on "drm/nouveau: remove >1 sclass support from nouveau_parent_create_".
There are *many* *more* code paths without proper error handling - I counted
at least 106 in 41 functions. If someone would like to do a bit of janitorial
work I marked those code paths and uploaded "patch" here:
2017 May 18
2
Bug: floating point bug in nclass.FD can cause hist() to crash
Hello everybody,
This is a bug involving functions in core R package:
graphics::hist.default, grDevices::nclass.FD, and
base::pretty.default. It is not yet on Bugzilla. I cannot submit it
myself, as I do not have an account. Could somebody else add it for
me, perhaps? That would be much appreciated.
Kind regards,
Sietse
Sietse Brouwer
Summary
-------
Floating point errors can cause a data
2008 Jun 23
5
Need ideas on how to show spikes in my data and how to code it in R
Hi
I have recently been analyzing birthweight data from a clinic. The
data has obvious defects in that there is digit preference on certain
weights making them overrepresented. This shows as spikes in the
histogram on certain well rounded weights like 2, 2.5, 3, etc. I
would like to show this to government officials but can't figure out
how I should present the finding in an easy to
2008 Jun 28
3
World wide telescope?
Helo,
Iam trying to run Microsoft World Wide Telescope from .msi format but I get some errors or msiexec crash.. i dont now it start debugging and i get that:
Code:
xxx at m5:~/Desktop$ msiexec /i wwtsetup.msi
fixme:advapi:LookupAccountNameW (null) L"m5it" (nil) 0x32f7fc (nil) 0x32f800 0x32f7f4 - stub
fixme:advapi:LookupAccountNameW (null) L"m5it" 0x160e00 0x32f7fc 0x160ce8