similar to: Help regading time series data reading

Displaying 20 results from an estimated 200 matches similar to: "Help regading time series data reading"

2011 Aug 09
1
How to pass different arguments to a function within lapply()?
Hi all, I have a data frame called "rst", see below: ------------------------------------------------------------------------------------------ # This is a paste able example # In case you don't have "KernSmooth" package installed, please uncomment below line. # install.packages("KernSmooth") library(KernSmooth) rst <- data.frame(hsp = rnorm(23), dal =
2007 Sep 01
1
Sweave rendering of simple character
Hi, When I compile the construction \begin{Scode}{eval=FALSE} ?HSP \end{Scode} with Sweave and latex, it outputs in the pdf as, > `?` (HSP) which is not incorrect but a bit more formal than I wanted for demonstrating the use of the help shortcut. I would like the output to look like, > ?HSP but I can't seem to make this work. I have also tried the results=verbatim argument.
2010 Oct 21
4
data.frame query
Hi All, Apologies for the simplicity of my question, but I would be grateful for any advice. Thanks I'm trying to put the output from a for loop into a data frame, however I have not been successful. The steps I have taken are: *R-code:* >for (k in 1:(nt-1-n0) ){ > n<- n0-1+k > lam=n/nt > Q=x[n] > output1<-data.frame(cbind(k,n,lam,Q)) > output1 > }
2007 Jan 04
1
samba needed to network across openvpn tunnel
I have been assued in other places that I need to have Samba and Wins in place touse Windows networking across an openvpn tunnel. back history: There was a network in place when I was hired to replace the former it guy. All ran very smooth with only one networking issue. There were "fights" between the Windows server and the Linux box: The master browser has received a server
2015 May 31
2
Signaling incoming call
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Guenther Boelter <gboelter at gmail.com> schrieb: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA256 > > On 05/31/2015 02:31 PM, Luca Bertoncello wrote: > > Hi list! > > > > Now all works as expected, at least in the simulation I did with > > AsteriskNOW. Hopefully it will work later, when Deutsche Telekom
2015 Jun 13
4
Asterisk and Deutsche Telekom
Hi list! I think there are many german users in this ML, that use Asterisk with the new line of Deutsche Telekom (Magenta Zuhause). My ISDN will be converted in Juli (Kaboom-day at Juli, the 3rd...) and right now I can just hope, that I configured my Asterisk well to work with Deutsche Telekom, but I cannot be sure, since I can't test it... So my question: can someone using Asterisk with
2017 Feb 18
1
getting files from a samsung flip phone
On Fri, 17 Feb 2017, Joseph L. Casale wrote: >> [root at localhost yum.repos.d]# mtp-detect >> libmtp version: 1.0.1 >> >> Listing raw device(s) >> No raw devices found. > > Does your phone have a usb setting for phone versus mtp mode? I think it doesn't. >From dmesg: usb 2-2.4: USB disconnect, device number 10 usb 2-2.4: new full speed USB device
2015 May 31
6
Signaling incoming call
Hi list! Finally I got my Asterisk works with my two phones... It was a problem on my Firewall (for the phone of my wife) and on my Dialplan (for forwarding calls). Now all works as expected, at least in the simulation I did with AsteriskNOW. Hopefully it will work later, when Deutsche Telekom changes my ISDN to VoIP... Well, now I have some time to spend with "fooling"... My phone
2017 Feb 17
2
getting files from a samsung flip phone
I'm trying to copy file from my samsung flip phone. google has informed me of libmtp and gvfs, but it doesn't seem to be helping. [root at localhost yum.repos.d]# mtp-detect libmtp version: 1.0.1 Listing raw device(s) No raw devices found. [root at localhost yum.repos.d]# In case it helps, I did a diff of ls -R from /dev before and after USB connection: [hennebry at localhost dev]$
2009 May 20
2
Example for parsing XML file?
Hi, I am trying to parse XML files and read them into R as a data frame, but have been unable to find examples which I could apply successfully. I'm afraid I don't know much about XML, which makes this all the more difficult. If someone could point me in the right direction to a resource (preferably with an example or two), it would be greatly appreciated. Here is a snippet from one of
2007 Nov 28
1
Asterisk <-> Nortel Phone Switch
Still trying to make my Asterisk PBK talk to our Nortel Phone Switch (C15k). Nortel did an upgrade which changed a bunch of things today, so I thought I'd give it another shot. It looks like I'm much closer this time, but still no go. Can't do calling in either direction. Anyone have any ideas? Thanks! Shawn [nortel] host=10.0.0.10 insecure=very type=peer qualify=no
2011 Jan 16
1
Atheros AR9287 PCI passthrough issue
Hi, i''m trying to use PCI passthrough feature on Xen 4.0 but it fails on my Wireless card. I use Xen 4.0 on a Debian 6.0 (package from repo) and try to passthrough the following PCI device root@omega:~# dpkg -l | grep xen ii libxenstore3.0 4.0.1-1 Xenstore communications library for Xen ii linux-image-2.6.32-5-xen-amd64 2.6.32-30 Linux 2.6.32 for 64-bit PCs, Xen dom0 support ii
2010 Jan 04
1
log-normal overlay
Hello, Using the following lines of code, I created the following graph:
2010 Jan 04
1
log normal overlay
Hello, Using the following lines of code, I created the following graph:
2012 Aug 03
1
How can I read time series data to create zoo objects if I have two title lines?
Hello, This is a standard example in which I read the time series data from a csv file and create a zoo object: x0 <- read.csv(file="CPI.csv", header=TRUE) time_0<-as.yearmon("1981-01")+(0:371)/12 x0zoo<-zoo(x0, time_0) The data look like this: TIME CPI CPI_food CPI_Clothes CPI_House CPI_Rent 198101 62.1 55.34 103.45 65.24 61.43 198102 63.16 56.95
2010 Jan 29
1
regression with categorial variables
Hi All, I am working on an example where the electric utility is investigating the effect of size of household and the type of air conditioning on electricity consumption. I fit a multiple linear regression Electricity consumption=size of the house hold + air conditioning type There are 3 air conditioning types so I modeled them as a dummy variable Type A Type B Type C Where type A is the
2012 Nov 14
2
aggrete data from combination
Dear R users, A have a dataframe (matrix) with two collumns (plot, and diameter (d)). I want all diameters values for different combination of plots. For example I want all d values for all posible combination, 100C2 (all d values for plot 1 with all d values in the plot 2.......with all d values from plot 1 with all d values from plot 100, ...... with all d values from plot 99 with all d values
2015 Jun 13
0
Asterisk and Deutsche Telekom
Am 13.06.2015 um 13:54 schrieb Luca Bertoncello: > I think there are many german users in this ML, that use Asterisk with the > new line of Deutsche Telekom (Magenta Zuhause). I don't think so. Most users will use the router provided by Telekom. Anyway, after 15 seconds of Google'ing for Magenta Zuhause and SIP, maybe this will help you:
2019 Apr 10
2
virt-v2v slow when running inside the VM
Hi, I'm trying to create a clone of a physical Window VM using p2v. My goal is to create a cloning tools VM that has libguestfs tools installed and acts as the convertor. VM conversion works just fine but the conversion rate is significantly slow(1/3) when running inside the VM compared to when the v2v is run on the same bare-metal host. On the host:
2011 Feb 22
1
Discrepancies in run times
Dear R-users, I am in the process of creating new custom functions and am quite puzzled by some discrepancies in execution time when I run some R scripts that call those new functions. So here is the situation: - let's assume I have created two custom functions, called myg and myf; - myg is mostly a plotting function, which makes a heavy use of grid and lattice functions; - myf is a function