Displaying 20 results from an estimated 200 matches similar to: "reading files from two folders"
2005 Dec 03
1
USB Belkin
Hi - I've seen some notes on nut-upsdev, and I also saw patch 302111. Is this
patch included in v2.0.2? I've had no luck getting the newhidups driver to
detect my Belkin. I'm using Fedora Core 4 and my Belkin is F6B750-AVR.
Thanks!
"If happiness is having what you want, want what you have."
- Bhudda
__________________________________
Start your day with Yahoo! -
2012 Feb 14
4
save output of loop
I have some data files e.g 100 . and after for loop I would like to save all
data in one single data frame
file_s <- list.files(path = ".", pattern = "v2.0.2.txt", all.files = FALSE,
full.names = FALSE, recursive = FALSE,
ignore.case = FALSE)
for (i in 1:100){
data = read.table(file_s[i],header=TRUE)
lat = data[,7] # latitude
lon
2023 Jul 08
1
Getting an error calling MASS::boxcox in a function
Hi,
Firstly, apologies as I have posted this on community.rstudio.com too.
I want to optimise a Box-Cox transformation on columns of a matrix (ie, a unique lambda for each column). So I wrote a function that includes the call to MASS::boxcox in order that it can be applied to each column easily. Except that I'm getting an error when calling the function. If I just extract a column of the
2010 Sep 12
2
dovecot 2.0.2 compile issues on Solaris 10u8 Sparc
I am having compile problems with Dovecot v2.0.2 on a well patched
Solaris 10u8 Sparc system using the included gcc compiler.
Version 2.0.0 compiled with out any issues using the same configure
syntax. My ./configure syntax looks like this:
./configure --with-ssl=openssl --with-shadow
Yahoo and Google searches turned up nothing for me.
Reviewing the file mountpoint.c between version 2.0.0
2005 Sep 22
3
Liebert PSI 1440 support
Hi,
I've been trying (unsuccessfully) to interact with the above UPS using
its USB/HID interface and have come to the conclusion that it's not
going to be as "easy" as I'd first thought :(
My attempts have all been on FreeBSD-5 (kernel as of today) using NUT
v2.0.2 and fiddling with newhidups -- I tried the simple approach of
adding the IDs and "seeing what
2023 Jul 08
1
Getting an error calling MASS::boxcox in a function
Try this for your function:
BoxCoxLambda <- function(z){
y <- z
b <- boxcox(y + 1 ~ 1,lambda = seq(-5, 5, length.out = 61), plotit =
FALSE)
b$x[which.max(b$y)] # best lambda
}
***I think*** (corrections and clarification strongly welcomed!) that `~`
(the formula function) is looking for 'z' in the GlobalEnv, the caller of
apply(), and not finding it. It finds
2004 Jun 11
4
Cisco 7940
I want to buy a 7940 to use with Asterisk. Does all
the features (i.e. Transfer, Hold, call waiting, MWI,
etc)work?
How difficult it is to configure 7940?
Thanks
__________________________________
Do you Yahoo!?
Friends. Fun. Try the all-new Yahoo! Messenger.
http://messenger.yahoo.com/
2008 Sep 09
8
Cucumber and fixtures/FixtureReplacement
Hey guys,
I''d never used RSpec Stories before, so I decided to follow the
apparent direction of the wind and just jump right into cucumber. I''m
dabbling with/using Cucumber and really like it. Good job, aslak!
Where i''m struggling right now is using either fixtures or a model
factory methodology like the FixtureReplacement. In both cases, I''m
not
2023 Jul 08
1
Getting an error calling MASS::boxcox in a function
No, I'm afraid I'm wrong. Something went wrong with my R session and gave
me incorrect answers. After restarting, I continued to get the same error
as you did with my supposed "fix." So just ignore what I said and sorry for
the noise.
-- Bert
On Sat, Jul 8, 2023 at 8:28?AM Bert Gunter <bgunter.4567 at gmail.com> wrote:
> Try this for your function:
>
>
2010 Sep 09
1
Dovecot 2.0.2 breakes LMTP delivery for me
Hi,
I'm onboard Debian Lenny (amd64) and just reverted from 2.0.2-0~auto+4 back
to 2.0.1-0~auto+1 because LMTP stopped working completly with the above
Package.
In my setup delivery is done from exim via LMTP to dovecot (Maildir/ext3).
The lmtp dovecot config looks like this:
> service lmtp {
> user = vmail
> inet_listener lmtp {
> address = 127.0.0.1
> port = 24
2005 Oct 19
1
CyberPower 685AVR and newhidups
Hi Scott,
Scott Alfter wrote:
> I had a UPS go bad recently (shuts off all by itself for no good reason,
>AFAICT), so I bought a CyberPower 685AVR this afternoon. The two CyberPower
>drivers in NUT 2.0.2 don't know how to talk to it, but the hidups driver
>appears to work properly. This means you have to use USB instead of RS-232
(it
>supports both), but at least it works.
>
1999 Mar 24
3
copying files samba - win95: drops dead in the middle
When copying files from the Samba server to a Windows95 client or vv,
the speed varies dramatically. When I try to copy the same (20MB) file 10
times
some times it copies in less than 10 seconds. The next time it takes allmost
a
minute. And most worrying of all quite often the copying just stops halfway
in
the middle. The progress bar in Windows just stops. The traffic on the NIC
also
stops (the
2009 Apr 05
3
Error reverting back to a previous version of rails
I want to revert back to a previous version of rails (1.2.3) but the
project I want to work on was created in 2.0.2. I have uninstalled 2.0.2
and gem installed 1.2.3 but when I run script\server I get the following
error. (I''m guessing its to do with my environment file but I''m pretty
new to Rails so Im not sure.)
2023 Jul 08
1
Getting an error calling MASS::boxcox in a function
Dear Ron and Bert,
First (and without considering why one would want to do this, e.g.,
adding a start of 1 to the data), the following works for me:
------ snip ------
> library(MASS)
> BoxCoxLambda <- function(z){
+ b <- boxcox(z + 1 ~ 1,
+ lambda = seq(-5, 5, length.out = 101),
+ plotit = FALSE)
+ b$x[which.max(b$y)]
+ }
> mrow <- 500
2023 Jul 08
1
Getting an error calling MASS::boxcox in a function
Thanks John.
?boxcox says:
*************************
Arguments
object
a formula or fitted model object. Currently only lm and aov objects are handled.
*************************
I read that as saying that
boxcox(lm(z+1 ~ 1),...)
should run without error. But it didn't. And perhaps here's why:
BoxCoxLambda <- function(z){
b <- MASS:::boxcox.lm(lm(z+1 ~ 1), lambda = seq(-5, 5,
2023 Jul 08
1
Getting an error calling MASS::boxcox in a function
Hi Bert,
On 2023-07-08 3:42 p.m., Bert Gunter wrote:
> Caution: This email may have originated from outside the organization. Please exercise additional caution with any links and attachments.
>
>
> Thanks John.
>
> ?boxcox says:
>
> *************************
> Arguments
>
> object
>
> a formula or fitted model object. Currently only lm and aov objects
1999 Feb 09
0
Why no RPM/SRPM for Samba v2.0.2?
Since Samba v2.0.2 was announced I've been waiting for it to show up in
RedHat RPM/SRPM format. So far, it hasn't shown up on any of the Samba
mirror sites.
Will RPM/SRPM packages be made available for v2.0.2?
Thank you.
*** Steve Snyder ***
2007 Feb 08
11
Best phone for easy provisioning
Does anyone have any recommendations for a phone that has easy to
understand/implement central provisioning? I've used CISCO 79XX phones,
and they're great (but too expensive). I like Grandstream phones, but
their provisioning sucks.
What is everybody else using in large environments where individual
config is not an option?
----------------------------------------
Rod Bacon
2010 Sep 08
2
v2.0.2 released
http://dovecot.org/releases/2.0/dovecot-2.0.2.tar.gz
http://dovecot.org/releases/2.0/dovecot-2.0.2.tar.gz.sig
Many small fixes and logging improvements, but most importantly fixes
LMTP with Maildir.
* vpopmail support is disabled for now, since it's broken. You can use
it via checkpassword support or its sql/ldap database directly.
- maildir: Fixed "duplicate uidlist entry"
2010 Sep 08
2
v2.0.2 released
http://dovecot.org/releases/2.0/dovecot-2.0.2.tar.gz
http://dovecot.org/releases/2.0/dovecot-2.0.2.tar.gz.sig
Many small fixes and logging improvements, but most importantly fixes
LMTP with Maildir.
* vpopmail support is disabled for now, since it's broken. You can use
it via checkpassword support or its sql/ldap database directly.
- maildir: Fixed "duplicate uidlist entry"