search for: vijaykr

Displaying 3 results from an estimated 3 matches for "vijaykr".

2017 Jul 28
0
R Programming help needed - Returning dataframes + 2 Variables dynamically
...1 [1] "Returned Values :" [1] 0 [1] 0 With Regards, Vijaya Kumar Regati Technical Lead, M3bi India Private Ltd Work: 040-67064732 ________________________________ From: Koustav Pal <koustavpal.devel at gmail.com> Sent: Friday, July 28, 2017 12:25:54 PM To: Vijaya Kumar Regati Cc: vijaykr.sas at gmail.com; r-help at R-project.org Subject: Re: [R] R Programming help needed - Returning dataframes + 2 Variables dynamically c() is used for constructing vectors. Or in other words using the method c(x,y) provides a vector of length 2 (hopefully). Therefore, you are pushing a single vecto...
2017 Jul 28
4
R Programming help needed - Returning dataframes + 2 Variables dynamically
c() is used for constructing vectors. Or in other words using the method c(x,y) provides a vector of length 2 (hopefully). Therefore, you are pushing a single vector to your function and not two arguments as you want. It should be Logic_fn(x,y) not Logic_fn(c(x,y)). Furthermore, i would recommend reading up on how function constructs work. Two return statements within a function are redundant
2017 Jul 28
1
R Programming help needed - Returning dataframes + 2 Variables dynamically
...> With Regards, > Vijaya Kumar Regati > Technical Lead, M3bi India Private Ltd > Work: 040-67064732 > > ________________________________ > From: Koustav Pal <koustavpal.devel at gmail.com> > Sent: Friday, July 28, 2017 12:25:54 PM > To: Vijaya Kumar Regati > Cc: vijaykr.sas at gmail.com; r-help at R-project.org > Subject: Re: [R] R Programming help needed - Returning dataframes + 2 Variables dynamically > > c() is used for constructing vectors. Or in other words using the method c(x,y) provides a vector of length 2 (hopefully). Therefore, you are pushing...