similar to: Plot data in sequence

Displaying 20 results from an estimated 400 matches similar to: "Plot data in sequence"

2018 Apr 04
0
Plot data in sequence
Hi, Thanks for the reproducible example. Looking at str(datn) would give you a clue. STATUS is a factor because it contains character values. Factor levels by default are alphabetical with numbers first, but you can change those. > str(datn) 'data.frame': 36 obs. of 3 variables: $ LEVEL : Factor w/ 4 levels "DIPLOMA","MATRIC",..: 1 1 1 1 1 1 1 1 1 4 ... $
2009 Dec 17
1
Error for making packages under windows XP-Error in library.dynam(lib, package, package.lib)
Hi, I have installed the necessary tools for making a R package under windows and am sure these tool have been correctly configured. I am very new to try writing a package, so the error may be very obvious for you. Forgive me if it is too easy. My package name is *stam*, and i put it under the folder "D:/StatSoft/R/MyPackage/". I have two folders,*R* and *man*. Besides, i also have
2010 Apr 22
1
Question of R CMD check
Hi all, Today, i just installed the newest R version 2.10.1 and other necessary tools for building R package under windows,e.g. Rtools, perl. All are the newest version. After the correct configuration under windows (configuration should be correct), i use it to re-check my old package. I found the following prolem when checking EXAMPLEs in each function, which did not exist before this
2010 Oct 08
3
Import Multiple csv files and merge into one Master file
Dear R Group: How to import multiple csv files and merge into one dataset. Thanks and Regards, Xing [[alternative HTML version deleted]]
2012 Mar 20
1
overriding "summary.default" or "summary.data.frame". How?
I suppose everybody who makes a package for the first time thinks "I can change anything!" and then runs into this same question. Has anybody written out information on how a package can override functions in R base in the R 2.14 (mandatory NAMESPACE era)? Suppose I want to alphabetize variables in a summary.data.frame, or return the standard deviation with the mean in summary output.
2010 Apr 21
2
problem of R CMD check
Hi all, Today, i just installed the newest R version 2.10.1 and other necessary tools for building R package under windows,e.g. Rtools, perl. All are the newest version. After the correct configuration under windows, i use it to re-check my old package. I found the following prolem when checking EXAMPLE, which did not exist before this re-installation. ######## * checking examples ... ERROR
2010 Oct 21
1
gam plots and seWithMean
hello I'm learning mgcv and would like to obtain numerical output corresponding to plot.gam. I can do so when seWithMean=FALSE (the default) but only approximately when seWithMean=TRUE. Can anyone show how to obtain the exact values? Alternatively, can you clarify the explanation in the manual "Note that, if seWithMean=TRUE, the confidence bands include the uncertainty about the
2018 Feb 07
1
A Study on "Dependence capturing strength" of four Dependence Analyzers in LLVM on SPEC 2017 benchmarks
Hi, I am Adil Arun Dangui, a 3rd year B.Tech student at IIT Hyderabad with a CGPA of 9.17. I am interested in Compilers, Compiler Optimizations and excited about LLVM and Polly. I have some familiarity of LLVM structure as we studied it in the Compiler Engineering course at IITH. Here
2006 Jun 10
1
Problems after having crosscompiled for XScale
Dear OpenSSH developers, I tried porting OpenSSH-4.3p2 to arm-linux (IXP425 Xscale platform) using openssl-0.9.8b and uClibc. This on the snapgear 3.2.0 distribution. It all compiles without problems, but when i run any openssh executable it will always show output similar to the following: # ssh sh: /usr/bin/ssh: No such file or directory # I checked for the libraries, they are all in /lib.
2008 Dec 15
3
install.packages and dependency version checking
I've started to implement checks for package versions on dependencies in install.packages(). However, this is revealing a number of problems/misconceptions. (A) We do not check versions when loading namespaces, ahd the namespace registry does not contain version information. So that for example (rtracklayer) Depends: R (>= 2.7.0), Biobase, methods, RCurl Imports: XML (>=
2019 Oct 14
4
Cannot Find Windows Shared Printer
I am running CentOS 7 with Samba version 4.9.1. I have a Windows shared printer that I cannot set up but I am not sure if this is a CentOS issue or a Samba issue. When I run the printer setup GUI, it is not able to find any shared printer. If I run smbclient I get this error: smbclient -L dap001 -N Unable to initialize messaging context Anonymous login successful ??????????????
2000 Aug 26
0
smbsh - Samba 2.0.7 - Solaris 2.6? Thanks!
Hi Oka, It worked! All works fine in the tcsh. Thanks! Kurt ----- Original Message ----- From: Stam, Kurt To: 'kurt@oneheartbreak.com' Sent: Friday, August 25, 2000 4:33 PM Subject: FW: smbsh - Samba 2.0.7 - Solaris 2.6 -----Original Message----- From: Oka Setiawan [mailto:oka@indigopool.com] Sent: Friday, August 25, 2000 4:37 PM To: Stam Kurt Subject: RE: smbsh - Samba 2.0.7 -
2016 Mar 22
2
Samba43 Kerberos issues
Hi There, I have an odd issue with my samba4 infrastructure, I have two servers both replicating fine. DC1 passes all tests documented here: https://wiki.samba.org/index.php/Setup_a_Samba_Active_Directory_Domain_Controller Except the following test: # kinit administrator # kinit: krb5_get_init_creds: Client (administrator at DOMAIN.NAME.COM.AU) unknown And in the logs I have found the
2016 Jun 21
2
Samba43 Kerberos problems
Hi There, I have an odd issue with my samba4 infrastructure, I have two servers both replicating fine. DC1 passes all tests documented here: https://wiki.samba.org/index.php/Setup_a_Samba_Active_Directory_Domain_Controller Except the following test: # kinit administrator # kinit: krb5_get_init_creds: Client (administrator at DOMAIN.NAME.COM.AU) unknown And in the logs I have found the
2011 Aug 04
2
survival probability estimate method
Hi, I was reading a paper published in JCO "Prediction of risk of distant recurrence using 21-gene recurrence score in node-negative and node-positive postmenopausal patients with breast cancer treated with anastrozole or tamoxifen: a TransATAC study" (ICO 2010 28: 1829). The author uses a method to estimate the 9-year risk of distant recurrence as a function of continuous recurrence
2012 Sep 08
3
Apply a function to columns of a matrix
Dear All,   as a follow up to my previous e-mail (I think I am getting closer...):   I am trying to apply the trapezoidal functions to a matric column by column. I have the following code:   a <-matrix(c(1:100),ncol=10) b <-matrix(c(2,4,6,8,10,12,14,16,18,20))   apply(a,2,function(b,a) sum(diff(b)*(a[-1]+a[-length(a)]))/2)   for some reason i get an error message: Error in FUN(newX[[, i],
2011 Nov 29
3
fill binary matrices with random 1s
Dear all, I am finding difficulty in the following, I would like to create an empty matrix e.g. 10x10 of 0s and sequentially fill this matrix with randomly placed a 1s until it is saturated. Producing 100 matrices of sequentially increasing density., This process needs to be randomized 1000 times., I assume i should run this along the following lines, 1) Create 1000 matrices all zeros, 2) add
2018 Mar 13
2
Understanding TS objects
R Help Community I'm trying to understand time series (TS) objects. Thought I understood but recently have run into a series of error messages that I'm not sure how to handle. I have 15 years of quarterly data and I typically create a TS object via something like... data.ts <- ts(mydata, start = 2002, frequency = 4) this create a matric as opposed to a vector object as I receive a
2009 Mar 05
2
Fox Pro DBF open problems
Hi List, Second attempt to get this issue diagnosed and solved. Samba Version 3.0.28el4 CentOS 4.7 The behavior is as follows when accessing Fox Pro dbf files. Users can access the files through the Fox Pro command interface without issues,when they choose a graphical environment (windows explore of the windows file open gui) the system returns an access denied message on the first
2023 Nov 02
4
Sum data according to date in sequence
Dear all, I have this set of data. I would like to sum the EnergykWh according date sequences. > head(dt1,20) StationName date time EnergykWh 1 PALO ALTO CA / CAMBRIDGE #1 1/14/2016 12:09 4.680496 2 PALO ALTO CA / CAMBRIDGE #1 1/14/2016 19:50 6.272414 3 PALO ALTO CA / CAMBRIDGE #1 1/14/2016 20:22 1.032782 4 PALO ALTO CA / CAMBRIDGE #1 1/15/2016 8:25 11.004884 5