[R] DIALLEL ANALYSIS

2013-08-13 Thread Waqas Shafqat
sir i have installed plant breeding library well. But when i import the file in R and give command * data(fulldial) Warning message: In data(fulldial) : data set ‘fulldial’ not found* above warning message is found please guide me. my data is under MALE FEMALE YIELD 1 1 53.333 1 2 52.333 1

[R] diallel analysis question

2013-08-08 Thread waqas shafqat
plz solve this question and send me commands.. this is a question for diallel analysis.. thanks __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide

Re: [R] diallel analysis

2013-07-15 Thread Rui Barradas
Hello, You should Cc the list. What I meant is that, at an R prompt you should type install.packages(pkgname) substituting 'pkgname' by the name of the package you're using. Rui Barradas Em 15-07-2013 12:01, waqas shafqat escreveu: Sorry sir i could not find the install.packages(pkgname)

Re: [R] diallel analysis

2013-07-15 Thread Kevin Wright
The plantbreeding package is on R-forge. See this link for install instructions: http://rplantbreeding.blogspot.com/ Kevin On Sun, Jul 14, 2013 at 12:49 AM, waqas shafqat waqas1...@gmail.com wrote: sir i could not find the plant breeding libraray in Rgui3.0.0 [[alternative HTML

[R] diallel analysis

2013-07-14 Thread waqas shafqat
sir i could not find the plant breeding libraray in Rgui3.0.0 [[alternative HTML version deleted]] __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide

Re: [R] diallel analysis

2013-07-14 Thread Rui Barradas
Hello, Which package is it? Maybe you need to install it. And after installing it, you need to load it in the R session. You do this with the following commands. install.package(pkgname) # do this only once library(pkgname) # do this every new R session Hope this helps, Rui Barradas

Re: [R] diallel analysis

2013-07-14 Thread Rui Barradas
Sorry, It's the plural: install.packages(pkgname) Rui Barradas Em 14-07-2013 11:20, Rui Barradas escreveu: Hello, Which package is it? Maybe you need to install it. And after installing it, you need to load it in the R session. You do this with the following commands.