Skip to content

Commit

Permalink
Make functions in Github
Browse files Browse the repository at this point in the history
  • Loading branch information
jiabowang committed Nov 5, 2024
1 parent 21e632d commit f6d553d
Show file tree
Hide file tree
Showing 3 changed files with 20,628 additions and 3 deletions.
2 changes: 1 addition & 1 deletion R/GAPIT.Phenotype.View.R
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ y=myY[!is.na(myY[,2]),2]
par(mar = c(5, 5, 2, 1))
plot(y,xlab="Individual",las=1,ylim=c(min(y,na.rm=TRUE),max(y,na.rm=TRUE)),ylab="Observation", cex=.5,main="a")
par(mar = c(5, 5, 2, 1))
hist(y,xlab="Observation",las=1,ylab="Frequency",cex=.5,main="c")
hist(as.numeric(y[!is.na(y)]),xlab="Observation",las=1,ylab="Frequency",cex=.5,main="c")
par(mar = c(5, 4, 2, 1))
plot(density(na.omit(y)),las=1,xlab="Observation",ylab="Density", cex=.5,main="d")
par(mar = c(5, 4, 2, 1))
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,13 +148,13 @@ Once an archive has been obtained it can be installed from a shell, similar to a


```
bash$ R CMD INSTALL GAPIT_3.2.0.9000.tar.gz
bash$ R CMD INSTALL GAPIT_3.5.0.9000.tar.gz
```

Or similarly from within R.

```
R> install.packages("GAPIT_3.2.0.9000.tar.gz", repos = NULL, type="source")
R> install.packages("GAPIT_3.5.0.9000.tar.gz", repos = NULL, type="source")
```


Expand Down
Loading

0 comments on commit f6d553d

Please sign in to comment.