search for: vijaya

Displaying 20 results from an estimated 27 matches for "vijaya".

Did you mean: vijay
2017 Jul 28
4
R Programming help needed - Returning dataframes + 2 Variables dynamically
...alling the function is to assign the first argument to the first declared variable and the second to the second. So, if you called Logic_fn(y,x), then y will be assigned to x and x to y. So to avoid such a scenario you can mention it explicitly as Logic_fn(y=y,x=x). On Jul 28, 2017 8:39 AM, "Vijaya Kumar Regati" <VijayaKumar.Regati at m3bi.com> wrote: Hi, Can someone please help me on below issue I am facing : I am trying to play with returning a dataframe+2 variables using a fn. But facing an issue : Error in Logic_fn(c(x, y)) : argument "y" is missing, with no def...
2017 Jul 28
0
R Programming help needed - Returning dataframes + 2 Variables dynamically
...urn(list(x,y,test_data)) } for ( i in 1:1 ) { test_data <- Logic_fn(x,y) print("Returned Values :") print(x) print(y) } Wrong output : [1] "Passed Values" [1] 0 [1] 0 [1] "After addition :" [1] 1 [1] 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 P...
2017 Jul 28
1
R Programming help needed - Returning dataframes + 2 Variables dynamically
...lues are in the list you assign to test_data, the original x and y are not modified, i.e the returned value for x will be test_data[[1]] and for y will be test_data[[2]]. Using the same variable names in the function and test is perhaps what is leading to confusion. > On 28 Jul 2017, at 09:13, Vijaya Kumar Regati <VijayaKumar.Regati at m3bi.com> wrote: > > Hi, > > > That was very useful information. Thanks. > > But still I am not able to get the desired output with updated code. > > Kindly help if you have any further thoughts ... > > Updated code :...
2017 Jul 28
2
R Programming help needed - Returning dataframes + 2 Variables dynamically
...am using : x <- 0 y <- 0 Logic_fn <- function(x,y){ x <- x + 1 y < y + 1 test_data <- rbind(x,y) test_data <- data.frame(test_data) return(test_data) return(c(x,y)) } for ( i in 1:1) { test_data <- Logic_fn(c(x,y)) test_data[1] test_data[2] test_data } With Regards, Vijaya Kumar Regati Disclaimer: IMPORTANT NOTICE: This e-mail (including any attachments) are confidential, may contain proprietary or privileged information and is intended for the named recipient(s) only. If you are not the intended recipient, any disclosures, use, review, distribution, printing or co...
2018 Jun 30
4
Developed an issue with Samba File Server integrated with Samba-AD
...lid users = suresh,senthil,sangeetha,prakash write list = suresh,senthil,sangeetha,prakash inherit permissions = Yes recycle:exclude = *.tmp recycle:maxsixe = 0 [Accounts] public = yes veto files = /*.mp3/*.avi/*.mov/" write list = administrator,lokesh,harishkumar,devaraju,shivanagouda,vijaya valid users = administrator,lokesh,harishkumar,devaraju,shivanagouda,vijaya recycle:repository = /storage/CSfiles/accounting/.recycle/%U recycle:exclude = *.tmp inherit permissions = Yes inherit acls = Yes create mask = 0600 read list = administrator,lokesh,harishkumar,devaraju,shivanagouda...
2015 Sep 21
1
Reg: Virsh managedsave Failing
...dev/shm shm 7.1G 3.4M 7.1G 1% /dev/shm 10.0.0.3:/.storage 90G 20G 66G 23% /storage We have also tried to enable debug mode for libvirt process but no error message is getting logged except the error message above. Could someone help me debug this issue? Regards, Vijaya
2012 Sep 12
8
Round off method in 1.8.7
Hi all i am trying to use round method if have a value 2.08 i want it as 2.1 and it worked in 1.9.2 but not in 1.8.7 is there any other way of doing it. USING 1.9.2 1.9.2p320 :001 > 2.08.round(1) => 2.1 1.9.2p320 :002 > 2.04.round(1) => 2.0 USING 1.8.7 irb(main):001:0> 2.08.round => 2 irb(main):002:0> 2.08.round(1) ArgumentError: wrong number of arguments (1 for
2010 Jan 19
0
RSPerl help.
Dear Sir, I am Vijaya, working as a research assistant in one small research organisation named IBAB in India. Here is my problem, after installing RSPerl in linux, I tried to test it by executing test.pl program which is present in RSPerl/script directory but I am getting the following error Can't load '...
2010 Jan 22
0
[Fwd: RSPerl help.]
Dear Sir, I am Vijaya, working as a research assistant in one small research organisation named IBAB in India. Here is my problem, after installing RSPerl in linux, I tried to test it by executing test.pl program which is present in RSPerl/script directory but I am getting the following error Can't load '...
2005 Sep 26
1
Smart Boot Manager question
...Win98 device manager IDE controller properties window. Is that the correct address. I did ctrl-I to rescan drives without success. My main objective is to boot linux from cd-rom. isolinux gives disk error, 80 with AX=4240. Any suggestion would be very helpful Thanks. Best Regards, Vijaya Poudyal 1.732.817.1214 --------------------------------- Yahoo! for Good Click here to donate to the Hurricane Katrina relief effort.
2007 Apr 18
1
Linux Equivalent of SetFilePerm() api
...FilePerm() api defined in commondll.dll.We would like to know whether there is a linux equivalent of windows commondll.dll in wine... If not then what could be the possible alternative to make this api function exactly as it does in windows. Waiting for an early reply, Thanks and Regards, Vijay. Vijaya Krishna Cherukuri Tata Consultancy Services Mailto: vk.cherukuri@tcs.com Website: http://www.tcs.com =====-----=====-----===== Notice: The information contained in this e-mail message and/or attachments to it may contain confidential or privileged information. If you are not the intended recipien...
2010 Apr 01
1
Factorial regression with multiple features: how to remove non-significant features?
Hello all, I am trying to do factorial regression using lm() like this (example): model<-lm(y ~ x1 + x2 + x3 + x4 + x1*x2*x3*x4) The final term 'x1*x2*x3*x4' adds all possible interactions between explanatory variables to the model. i.e. x1:x2, x1:x2:x3, etc, etc. Now, the issue is that some of the interactions are significant and some are not. I can manually remove
1999 Jul 16
5
Samba for VMS
I just installed Samba for VMS (1.9.17p4) on a DecServer 1000A running VMS 7.1 The University Network is primarily NT Server 4.0 SP5. My experience is with Netware and NT, not with VMS, but I have the luck of supporting the system..... My main question is about Encrypted Passwords.....Does this release of Samba support them, or do I have to modify the clients who want access to our Alpha to
2010 Jan 22
0
RSPerl installation problem.
...ol: R_ClassSymbol at /usr/lib/perl5/5.8.8/i386-linux-thread-multi/DynaLoader.pm line 230. at rpack.pl line 3 Compilation failed in require at rpack.pl line 3. BEGIN failed--compilation aborted at rpack.pl line 3. Please let me know the actual procedure, and what does this error means. Thank you, Vijaya -- View this message in context: http://n4.nabble.com/RSPerl-installation-problem-tp1094636p1094636.html Sent from the R help mailing list archive at Nabble.com.
2004 Jun 09
0
Can anyone help us....
...is giving following error: 3075: session request to 192.168.31.228 failes (Called name not present) 3075: session request to 192 failed (Called name not present) i am able to mount linux machines.. how to solve this issues... any help will be greatly appreciated... thanks in advance... regards, Vijaya Kumar .V ----- End forwarded message -----
2007 Oct 15
3
NoMethodError
Hi to all!! I am new to ruby. I am trying to write a program to fetch the data from Database and written the data using pagination. I could get the data from DB. but pagination is not working. When i see the log file it is showing the following error. NoMethodError: undefined method ''paginatior'' #<Hash...> my pginate.rb and pagination.rb files are not in the same folder
2012 Sep 11
10
wickedpdf
Hi all i''m trying to generate pdf and i got this error Location of wkhtmltopdf unknown and i also get Bad wkhtmltopdf''s path gpa/vendor/plugins/wicked_pdf/lib/wicked_pdf.rb:26:in `initialize'' /EDWARD/_gpa/vendor/plugins/wicked_pdf/lib/pdf_helper.rb:53:in `new'' /EDWARD/gpa/vendor/plugins/wicked_pdf/lib/pdf_helper.rb:53:in `make_pdf''
2013 Aug 29
0
[linux-linus test] 18805: regressions - FAIL
...auhan@netapp.com> Vijay Kumar Mishra <vijay.kumar@st.com> Vijay Mohan Guvva <vmohan@brocade.com> Vijay Mohan Pandarathil <vijaymohan.pandarathil@hp.com> Vijay Purushothaman <vijay.a.purushothaman@intel.com> Vijay Subramanian <subramanian.vijay@gmail.com> Vijaya Kumar K <Vijaya.Kumar@caviumnetworks.com> Vijaya Mohan Guvva <vmohan@brocade.com> Vikas C Sajjan <vikas.sajjan@linaro.org> Vikas Chaudhary <vikas.chaudhary@qlogic.com> Vikas Manocha <vikas.manocha@st.com> Vikas Sajjan <vikas.sajjan@linaro.org> Vikram...
2013 Aug 29
0
[linux-linus test] 18844: regressions - FAIL
...auhan@netapp.com> Vijay Kumar Mishra <vijay.kumar@st.com> Vijay Mohan Guvva <vmohan@brocade.com> Vijay Mohan Pandarathil <vijaymohan.pandarathil@hp.com> Vijay Purushothaman <vijay.a.purushothaman@intel.com> Vijay Subramanian <subramanian.vijay@gmail.com> Vijaya Kumar K <Vijaya.Kumar@caviumnetworks.com> Vijaya Mohan Guvva <vmohan@brocade.com> Vikas C Sajjan <vikas.sajjan@linaro.org> Vikas Chaudhary <vikas.chaudhary@qlogic.com> Vikas Manocha <vikas.manocha@st.com> Vikas Sajjan <vikas.sajjan@linaro.org> Vikram...
2013 Mar 18
0
[linux-linus test] 17325: regressions - trouble: broken/fail/pass
...;bvijay@ti.com> Vijay Chauhan <vijay.chauhan@netapp.com> Vijay Kumar Mishra <vijay.kumar@st.com> Vijay Mohan Pandarathil <vijaymohan.pandarathil@hp.com> Vijay Purushothaman <vijay.a.purushothaman@intel.com> Vijay Subramanian <subramanian.vijay@gmail.com> Vijaya Mohan Guvva <vmohan@brocade.com> Vikas Chaudhary <vikas.chaudhary@qlogic.com> Vikas Manocha <vikas.manocha@st.com> Vikram Mulukutla <markivx@codeaurora.org> Vikram Narayanan <vikram186@gmail.com> Vikram Pandita <vikram.pandita@ti.com> Viktor Novotný &...