look: look function

Description Usage Arguments Examples

View source: R/look_function.R

Description

This function allows you to pull data from the oat data base or similar

Usage

1
look(x)

Arguments

x

REQUIRED data.frame dataframe or matrix

Examples

1
2
3
4
5
6
7
8
9
df.small<-data.frame(a=rnorm(1:100), b=rnorm(1:100))
df.small
look(df.small)

df.large<-dat <- data.frame(a=rnorm(1:100), b=rnorm(1:100), c=rnorm(1:100),
                           d=rnorm(1:100), e=rnorm(1:100),f=rnorm(1:100),g=rnorm(1:100), h=rnorm(1:100),
                           i=rnorm(1:100), j=rnorm(1:100), k=rnorm(1:100), l=rnorm(1:100))
head(df.large)
look(df.large)

austinjcase/BreedR documentation built on May 16, 2019, 6:45 p.m.