Displaying 20 results from an estimated 800 matches similar to: "Help with the plot function"
2017 Jun 20
2
Help with the plot function
I'm trying to recreate a graph similar to the last one found on this link:
https://sites.ualberta.ca/~lkgray/uploads/7/3/6/2/7362679/6c_-_line_plots_with_error_bars.pdf
The difference is that I want budbreak on the top, and the temperatures at
the bottom.
I tried to set par before each graph and include lines, with no avail.
Thanks, Bert.
Andre
On Mon, Jun 19, 2017 at 7:41 PM, Bert Gunter
2017 Jun 20
0
Help with the plot function
See
?layout
?split.screen
?par (the mfrow and mfcol values)
depending exactly on what you want to do and how you want to do it.
Essentially, these all allow you to make separate plots at different
regions of the device.
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opus (aka Berkeley Breathed in
2017 Jun 20
0
Help with the plot function
1. Did you study the functions (esp. ?layout) to which I referred you?
2. Show us your code! -- "to no avail" is meaningless!
-- Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )
On Mon, Jun 19, 2017 at 7:01 PM, Andr? Luis Neves
2017 Jun 20
1
Help with the plot function
Dear all,
I found the last example of this link (
https://sites.ualberta.ca/~lkgray/uploads/7/3/6/2/7362679/6c_-_line_plots_with_error_bars.pdf)
very similar to the one I need to make for my paper, and I think I got what
I wanted by applying some of the suggestions of this mail list.
Here it is the code I devised (maybe there will be further improvements
from the list):
YEAR <- c(1996 ,
2017 Jun 20
2
Help with the plot function
Hi, Bert:
Yes, I studied the functions you suggested, but I didn't get to adapt it to
my example whose reproducible code I sent in my first email.
Here it is the code of the functions I studies:
## par
par(mfrow = c(2, 3))
par(cex = 0.6)
par(mar = c(3, 3, 0, 0), oma = c(1, 1, 1, 1))
for (i in 1:6) {
plot(1, 1, type = "n")
mtext(letters[i], side = 3, line = -1, adj = 0.1, cex =
2017 Jun 20
0
Help with the plot function
Hi
You are quite close. With slight modification of your code:
par(mfrow = c(2, 1))
par(cex = 0.6)
par(mar = c(0, 0, 0, 0), oma = c(4, 4, 0.5, 0.5))
par(tcl = -0.25)
par(mgp = c(2, 0.6, 0))
plot(BUD~YEAR, type="o", ann=F, axes=F, pch=19, ylim=c(60,100),data=g1)
axis(4, las=2)
mtext("Bud Break (Julian Day)", side=4, padj=4)
arrows(g1$YEAR,g1$BUD, g1$YEAR,g1$BUD + g1$BUD_SE,
2011 Nov 08
1
passing dataframe col name through cbind()
Hi all ---
I note that the column name of the first column in a dataframe does not necessarily get passed on when using cbind (example below)?
I'm looking for help in clarifying why this behavior occurs, and how I can get all col names, including the first, passed on to the result?while I suspect it's obvious and documented to the cognoscenti, it's puzzling me?
Many thanks for any
2006 Jan 16
2
Agents getting logged off agressively
I have a group of agents logged in to a queue that is set for ringall. The
agents are set to auto logoff if they don't answer in 15 seconds incase they
step away without logging out. That works fine, however, if they are on a
call and a new call comes in, they are getting logged out too. The phones
are ATA's connected via SIP. One thought is that the phones may be allowing
a second
2006 Jan 12
4
How do you create a tree strucutre with ActiveRecord
I want to build an application that has the concept of administrative
domains. What I mean by this is that administrators have access to
different data, based on what domains they are a member of. The domain
strucutre is hierarchical. Here is an example:
- MLB
- AL
- East
- Yankees
- Red Sox
...
+ Central
+ West
- NL
+ East
+ Central
+ West
Now
2002 Dec 08
2
Warning: as.numeric reorders factor data
Recently, I was using aggregate() to develop averages by trial for an
experiment I was running. Trials were indicated as ordinal numbers for
each subject. aggregate() turned trial into factors during the
aggregation process. I then wanted to create a scatter plot of subject
performance by trial, so I applied as.numeric to the (now) factor
variable trial. as.numeric reordered the trial
2008 Dec 18
1
[Fwd: Asterisk client for ekiga.net NAT problem]
I am experiencing a "606 not Acceptable" error trying to set up an
Asterisk server as an ekiga.net client. My server is behind a firewall
with NAT routing. I have googled this problem and read about Asterisk
feeding its local ip address to ekiga.net. That seems to be my
problem.
I tried putting stunaddr=stun.ekiga.net into the sip.conf file under
[ekiga]. I also tried
2017 Dec 03
1
Rcpp, dyn.load and C++ problems
On 3 December 2017 at 11:08, Peter Langfelder wrote:
| I would go to the source, in this case Dirk Eddelbuettel's (I hope I
| spelled it correctly)
You did. Take a point :)
| documentation for Rcpp:
|
| http://dirk.eddelbuettel.com/code/rcpp/Rcpp-attributes.pdf
Yup. And
RShowDoc("Rcpp-attributes", package="Rcpp")
in R is even easier.
On 3 December 2017 at 13:19,
2004 Dec 03
1
Umlaut over I on Definity display
I've successfully integrated * to a Definity G3SI PBX via PRI. On calls
from the * box to a Definity display telephone a umlaut over an I appears at
the beginning of the caller name on the Definity display. Anyone seen this
before?
Thanks... Bud
2005 Dec 11
1
Opening samba shares from W2K system - help
I have a simple LAN microsoft workgroup setup with four W2K systems and one
linux server. I'm planning on the Fedora 4 box to be the printer and file
server. I have samba running and I can see the file shares in the windows
file explorer. However, I can't connect because of a password issue. I
have the same user set up on the linux system (in fact they have the same
logon passwords),
2015 Nov 02
2
Icecast over HTTPS
Hi,
is there anyone running Icecast stream over HTTPS. Is it even possible? We
are updating our iOS app and there is the new Transport security... For
now, it can be disabled per domain, bud in future, this may be a problem...
:)
--
*Ladislav Soukup*
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2013 Dec 10
4
OT: Large corporate email systems - Exchange vs open source *nix based
Hello,
There has been some whispers about considering migrating our mail
systems to Exchange Server. I want to try to nip this in the bud.
I would like to ask for some help with providing some kind of comparison
of large(r) commercial companies use of email systems... specifically,
those using Microsoft Exchange Server, vs those using open source
Linux/Unix based systems, including even
2010 Aug 18
1
probabilities from predict.svm
Dear R Community-
I am a new user of support vector machines for species distribution modeling and am using package e1071 to run svm() and predict.svm(). Briefly, I want to create an svm model for classification of a factor response (species presence or absence) based on climate predictor variables. I have used a training dataset to train the model, and tested it against a validation data set
2002 Dec 12
3
y axis on hist
Hi:
The y axis on the hist function seems to set its limits oddly.
sometimes, it covers the full range of the data and sometimes it stops
one major tick short. I have had this behavior with a variety of data
sets, and it can easily be reproduced by just running the following
several times:
hist(rnorm(100000))
I have tried explicitly setting ylim to the range of values produced by
rnorm
2016 May 12
3
Problem with Install R on Linux Ubuntu 16.04 Xenial Xerus
Thanks for the reply Mr. Eddelbuettel. However I somehow couldn't manage to solve the problem completely.
So I cleaned the sources.list file so taht the output is this:
sudo apt-get update
Hit:1 http://tr.archive.ubuntu.com/ubuntu xenial InRelease
Hit:2 http://tr.archive.ubuntu.com/ubuntu xenial-updates InRelease????????????????????????????????????????????????????????????????????
Hit:3
2017 Dec 01
3
undefined symbol: sgemv_thread_n
Den 2017-12-01 kl. 20:24, skrev Dirk Eddelbuettel:
>
> On 1 December 2017 at 19:55, G?ran Brostr?m wrote:
> | Hello,
> |
> | the following is a part of a question asked on R-help. I realized that
> | it is better suited for asking here. Apologies for the cross-posting!
> |
> | I'm on Ubuntu artful, and upgraded with 'apt'. Then
> |
> |