search for: mande

Displaying 20 results from an estimated 66 matches for "mande".

Did you mean: made
2017 Dec 14
2
help with recursive function
Hi, I need some help with running a recursive function. I like to run funlp2 recursively. When I try to run recursive function in another function named "calclp" I get this "Error: any(!dat2$norm_sd) >= 1 is not TRUE". I have never built a recursive function before so having trouble executing it in this case. I would appreciate any help or guidance to resolve this issue.
2017 Dec 14
0
help with recursive function
You seem to have a typo at this expression (and some others like it) Namely, you write any(!dat2$norm_sd) >= 1 when you possibly meant to write !( any(dat2$norm_sd) >= 1 ) i.e. I think your ! seems to be in the wrong place. HTH, Eric On Thu, Dec 14, 2017 at 3:26 PM, DIGHE, NILESH [AG/2362] < nilesh.dighe at monsanto.com> wrote: > Hi, I need some help with running a
2017 Dec 14
2
help with recursive function
My own typo ... whoops ... !( any(dat2$norm_sd >= 1 )) On Thu, Dec 14, 2017 at 3:43 PM, Eric Berger <ericjberger at gmail.com> wrote: > You seem to have a typo at this expression (and some others like it) > > Namely, you write > > any(!dat2$norm_sd) >= 1 > > when you possibly meant to write > > !( any(dat2$norm_sd) >= 1 ) > > i.e. I think your !
2017 Dec 14
2
help with recursive function
Hi, I accidently left out few lines of code from the calclp function. Updated function is pasted below. I am still getting the same error ?Error: !(any(data1$norm_sd >= 1)) is not TRUE? I would appreciate any help. Nilesh dput(calclp) function (dataset) { dat1 <- funlp1(dataset) recursive_funlp <- function(dataset = dat1, func = funlp2) { dat2 <- dataset %>%
2017 Dec 14
0
help with recursive function
Eric: Thanks for taking time to look into my problem. Despite of making the change you suggested, I am still getting the same error. I am wondering if the logic I am using in the stopifnot and if functions is a problem. I like the recursive function to stop whenever the norm_sd column has zero values that are above or equal to 1. Below is the calclp function after the changes you suggested.
2017 Dec 14
0
help with recursive function
The message is coming from your stopifnot() condition being met. On Thu, Dec 14, 2017 at 5:31 PM, DIGHE, NILESH [AG/2362] < nilesh.dighe at monsanto.com> wrote: > Hi, I accidently left out few lines of code from the calclp function. > Updated function is pasted below. > > I am still getting the same error ?Error: !(any(data1$norm_sd >= 1)) is > not TRUE? > > >
2017 Dec 14
3
help with recursive function
If you are trying to understand why the "stopifnot" condition is met you can replace it by something like: if ( any(dat2$norm_sd >= 1) ) browser() This will put you in a debugging session where you can examine your variables, e.g. > dat$norm_sd HTH, Eric On Thu, Dec 14, 2017 at 5:33 PM, Eric Berger <ericjberger at gmail.com> wrote: > The message is coming from
2017 Dec 14
0
help with recursive function
Eric: I will try and see if I can figure out the issue by debugging as you suggested. I don?t know why my code after stopifnot is not getting executed where I like the code to run the funlp2 function when the if statement is TRUE but when it is false, I like it to keep running until the stopifnot condition is met. When the stopifnot condition is met, I like to get the output from if statement
2017 Dec 14
1
help with recursive function
Your code contains the lines stopifnot(!(any(data1$norm_sd >= 1))) if (!(any(data1$norm_sd >= 1))) { df1 <- dat1 return(df1) } stop() "throws an error", causing the current function and all functions in the call stack to abort and return nothing. It does not mean to stop now and return a result. Does the function give
2017 Oct 31
1
"mount error(112): Host is down" on Ubuntu 17.10
Hello, I am a long time Samba user but new to this list. Now I need some help on a CIFS mount issue I just encountered. We have 4 Samba servers: ServerA: Samba 3.0.28a ServerB: Samba 3.6.25 ServerC: Samba 4.3.11 ServerD: Samba 4.3.11 I am using a BASH script to mount shares in user's home directory using this line: sudo mount.cifs //192.168.123.29/share/ ~/server/share -o
2007 Jul 23
1
AAF association not workin
Hi, I have configured my model as follows: class Product < ActiveRecord::Base acts_as_ferret :fields => [:description,:label_description,:label_free,:product_id_supplier,:description_supplier,:supplier_description] belongs_to :supplier def supplier_description return "#{self.supplier.description}" end In the development log I can see the supplier_description
2010 Jul 30
0
ANNOUNCE: cifs-utils release 4.6 available for download
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 It has been a while since I've cut a new release for cifs-utils. This one has more visible changes than were in the last few releases. Major highlights: - - documentation additions for the fsc option - - mount.cifs deals with _netdev, mand and nomand options correctly now - - a change in how mount.cifs handles the MS_MANDLOCK flag. It used to
2003 Jun 27
1
make
During the installation I do my './configure' but the 'make' command does not work. I'm using the Sun native make, full path /usr/xpg4/bin/make and we have a gcc compiler. I could really use some help trying to understand what the make com- mand is doing. (or not doing in my case) George ===================== George Caunt Systems Administrator Framingham Heart Study 73
2009 Oct 23
1
hard links on samba shares
Hello! I'm encountering a bug with samba shares, rsync and hard links. I was trying to investigate why on my "linksys" samba share i wouldn't get any hard link transferred and rsyncs to it would take forever. To keep a long story short, here's the output of the command, which should be pretty explanatory :-) mount says that: //192.168.0.105/DISK on /samba/linksys type
2010 Aug 23
4
Steam games unable to play
Wine Version 1.2, Ubuntu Lycid Lynx Games that I've tried to launch: Half-Life (Goldsource) Day of Defeat Sven Co-op I have tried to run the games with Steam normal installation and with Steam Installed with winetricks Terminal Output when I tried to run Steam and then Half-Life under Steam. Code: mand at mand-desktop:~/.wine/drive_c/Program Files/Steam$ wine Steam.exe CellID: Fetching
2006 Mar 03
2
Fstab mounting error
Hi all, I've googled on this but no luck so far. I'm using FC4. This works flawlessly: Mount -t smbfs //host/share /var/mount/hostname/sharename -o username=username,password=password,domain=DOMAIN,fmask=0777,dmask=0777 However, it fails in fstab when I do: //host/share /var/mount/hostname/sharename smbfs username=username,password=password,domain=DOMAIN,fmask=0777,dmask=0777 0 0
2008 Dec 11
4
mounted directory repeating unexpected files and directories
Hi Samba List, I am finding a strange problem between a mount samba directory. Any clues why this is happening? The server side is WD MyBook World Edition II and the export directory is: /shares/internal/Music/ on the client site I am mounting the directory to /mnt/mybook-music the client is an ubuntu server $ uname -a Linux tsunami 2.6.24-22-generic #1 SMP Mon Nov 24 18:32:42 UTC 2008
2008 Apr 01
1
strange permission denied problem
I built an embedded box which uses mount.cifs to mount network shares. I've shipped several of these and all are working fine except for one, which gives me permission denied on certain files: root@Mnemosyne:~/mnt/bgrp1/c/Ballance Group Folders/Scully/Client Photos-Scully# cat "Office Pics 002.jpg" > /dev/null cat: Office Pics 002.jpg: Permission denied
2013 Mar 21
0
[LLVMdev] Simpler types in TableGen isel patterns
Hey Jakob, On Thu, Mar 21, 2013 at 2:26 PM, Jakob Stoklund Olesen <stoklund at 2pi.dk>wrote: > Currently, instruction selection patterns are defined like this: > > def : Pat<(and (not GR32:$src1), GR32:$src2), > (ANDN32rr GR32:$src1, GR32:$src2)>; > def : Pat<(and (not GR64:$src1), GR64:$src2), > (ANDN64rr GR64:$src1, GR64:$src2)>;
2006 May 16
8
capistrano can''t find svn
I''m trying to get capistrano to deploy to an osx machine - rake remote:cold_deploy but it fails on the svn co line with "bash: line 2: svn: command not found" I''ve set the proper path to svn (/usr/local/bin) in both .bash_profile and .bash_login but capistrano seems to be ignoring these. How does capistrano know where to look for svn? Thanks