similar to: How to show complete time values in a plot x axis

Displaying 14 results from an estimated 14 matches similar to: "How to show complete time values in a plot x axis"

2013 Apr 22
7
Multiple lon lat points in the map with ggplot2
Hello R users, For the last few days I am struggling with the following task: my data.frame: A1 A2 A3 B1 B2 B3 58.81 53.292 54.501 13.013 17.39 19.407 56.02 56.251 54.033 20.099 13.15 10.411 55.376 53.099 57.625 13.396 21.031 13.22 58.584 53.194 54.218 13.038 16.854 19.289 55.7 55.921 53.847 19.942 13.153 9.828 55.093 52.934
2011 Oct 14
2
non-parametric permutation and signed paired-difference distributions
Hi all Consider the classic data below from Darwin on the heights of 15 pairs of zea mays (corn) plants either cross-fertilized or self-fertilized, where the goal is to see if it makes a difference. > head(ZeaMays) pair pot cross self diff 1 1 1 23.500 17.375 6.125 2 2 1 12.000 20.375 -8.375 3 3 1 21.000 20.000 1.000 4 4 2 22.000 20.000 2.000 5 5 2 19.125
2020 Apr 16
2
Strangeness on X11 screen capture
Hi all, I am running CentOS 7 on a NUC5CPYB. Intel video: 00:02.0 VGA compatible controller: Intel Corporation Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Integrated Graphics Controller (rev 35) When I take a screen shot I get "different" things. I use: export DISPLAY=:0.0 /usr/bin/xwd -silent -root -out screen; convert screen screen.png I tried import also for the screen
2007 Dec 27
1
Lda and Qda
Hi all, I'm working with some data: 54 variables and a column of classes, each observation as one of a possible seven different classes: > var.can3<-lda(x=dados[,c(1:28,30:54)],grouping=dados[,55],CV=TRUE) Warning message: In lda.default(x, grouping, ...) : variables are collinear > summary(var.can3) Length Class Mode class 30000 factor numeric ### why?? I
2010 Jun 22
0
aov - subjects nested within groups & crossed with questions
Hello, I was going to use lmer() on this data, but it seemed easier -- and more importantly, more meaningful -- to just analyze smaller sections of it individually. I'd like to ask for help to see if I'm analyzing the separate parts correctly. Each part is the same, and they all look like this: ______________________________________________________________ question 1 question 2
2007 Jun 20
0
Multi-variate Probit model using Bayesm
Hello, I have built a multi-variate probit model using the package "bayesm", which requires that the X data is constructed using the function "CreateX". I've gone through the documentation and run my model, but wanted to be sure about my interpretation of the results for the coefficients - beta. Steps: 1) I have 5 choices for the dependent variable Y, so p=5 2) I have 8
2007 Jun 21
0
Multi-variate Probit model using Bayesm in R
Hello, I have built a multi-variate probit model using the package "bayesm", which requires that the X data is constructed using the function "CreateX". I've gone through the documentation and run my model, but wanted to be sure about my interpretation of the results for the coefficients - beta. Steps: 1) I have 5 choices for the dependent variable Y, so p=5 2) I have 8
2011 Oct 19
3
[Bug 1944] New: Wrong "Date flow start" and "Duration Proto" in version 9 with nfcapd
https://bugzilla.mindrot.org/show_bug.cgi?id=1944 Bug #: 1944 Summary: Wrong "Date flow start" and "Duration Proto" in version 9 with nfcapd Classification: Unclassified Product: softflowd Version: -current Platform: amd64 OS/Version: FreeBSD Status: NEW Severity:
2016 Jul 01
0
problem with dnsmasq and dhclient
Hello, I have a problem which is that some of my VMs are loosing there IP addresses from time to time. What I saw in the log is when this VM loose its IP address there are DHCPREQUEST send from the VM by dhclient and the server responded only 50 minutes later ! Any help, advise on how to debug would be welcome. Thanks in advance Patrick Here after is an extract from the log July 1st 2016,
2016 Jul 01
0
problem with dnsmasq and dhclient
Hello, I have a problem which is that some of my VMs are loosing there IP addresses from time to time. What I saw in the log is when this VM loose its IP address there are DHCPREQUEST send from the VM by dhclient and the server responded only 50 minutes later ! Any help, advise on how to debug would be welcome. Thanks in advance Patrick Here after is an extract from the log July 1st 2016,
2016 Jul 01
0
problem with dnsmasq and dhclient
Hello, I have a problem which is that some of my VMs are loosing there IP addresses from time to time. What I saw in the log is when this VM loose its IP address there are DHCPREQUEST send from the VM by dhclient and the server responded only 50 minutes later ! Any help, advise on how to debug would be welcome. Thanks in advance Patrick Here after is an extract from the log July 1st 2016,
2016 Jul 01
0
problem with dnsmasq and dhclient - loosing IP address after a while
Hello, I have a problem which is that some of my VMs are loosing there IP addresses from time to time. What I saw in the log is when this VM loose its IP address there are DHCPREQUEST send from the VM by dhclient and the server responded only 50 minutes later ! Any help, advise on how to debug would be welcome. Thanks in advance Patrick Here after is an extract from the log July 1st 2016,
2005 Sep 20
0
Degrees of freedom in glmmPQL
I apologise in advance if this is a daft question, but I've been battling GLMMs for a while in R 2.1.1 and keep getting bizarre degrees of freedom appearing. For instance, using the example data attached and a simplified model from the one I need, I have: binary choice data, fixed factors = PositionIndex and Treatment and random factor = Name nested within treatment. I use the model:
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.