This vignette shows how to generate a rectangular lattice
design using both the FielDHub Shiny App and the scripting
function square_lattice()
from the FielDHub
package.
1. Using the FielDHub Shiny App
To generate a square lattice design using the FielDHub app:
First, go to Lattice Designs > Square Lattice
Then, follow the following steps where we will show how to generate an square lattice design with 64 treatments and 3 reps.
Inputs
-
Import entries’ list? Choose whether to import a
list with entry numbers and names for genotypes or treatments.
If the selection is
No
, that means the app is going to generate synthetic data for entries and names of the treatment/genotypes based on the user inputs.If the selection is
Yes
, the entries list must fulfill a specific format and must be a.csv
file. The file must have the columnsENTRY
andNAME
. TheENTRY
column must have a unique entry integer number for each treatment. The columnNAME
must have a unique name that identifies each treatment. BothENTRY
andNAME
must be unique, duplicates are not allowed. In the following table, we show an example of the entries list format. This example has an entry list with 12 treatments.
ENTRY | NAME |
---|---|
1 | GenotypeA |
2 | GenotypeB |
3 | GenotypeC |
4 | GenotypeD |
5 | GenotypeE |
6 | GenotypeF |
7 | GenotypeG |
8 | GenotypeH |
9 | GenotypeI |
10 | GenotypeJ |
11 | GenotypeK |
12 | GenotypeL |
Input the number of treatments in the Input # of Treatments box. The number of treatments must be a square number in the square lattice design. We will enter
64
for our sample experiment.Select the number of replications of these treatments with the Input # of Full Reps box. In this examples, set it to
3
.Set the number of plots in each incomplete block with the Input # of Plots per IBlock box. In this examples, set it to
8
.Enter the number of locations in Input # of Locations. We will run this experiment over a single location, so set it to
1
.Select
serpentine
orcartesian
in the Plot Order Layout. For this example we will use the defaultserpentine
layout.Enter the starting plot number in the Starting Plot Number box. If the experiment has multiple locations, you must enter a comma separated list of numbers the length of the number of locations for the input to be valid. Set it to
101
.Enter a name for the location of the experiment in the Input Location box. If there are multiple locations, each name must be in a comma separated list. For this example, set it to
"FARGO"
.To ensure that randomizations are consistent across sessions, we can set a random seed in the box labeled random seed. In this example, we will set it to
1233
.Once we have entered the information for our experiment on the left side panel, click the Run! button to run the design.
Outputs
After you run a square lattice design in FielDHub, there are several ways to display the information contained in the field book.
Field Layout
When you first click the run button on a square lattice design,
FielDHub displays the Field Layout tab, which shows the entries and
their arrangement in the field. In the box below the display, you can
change the layout of the field or change the location displayed. You can
also display a heatmap over the field by changing Type of
Plot to Heatmap
. To view a heatmap, you must first
simulate an experiment over the described field with the
Simulate! button. A pop-up window will appear where you
can enter what variable you want to simulate along with minimum and
maximum values.
Field Book
The Field Book displays all the information on the experimental design in a table format. It contains the specific plot number and the row and column address of each entry, as well as the corresponding treatment on that plot. This table is searchable, and we can filter the data in relevant columns. If we have simulated data for a heatmap, an additional column for that variable appears in the field book.
2. Using the FielDHub
function:
square_lattice()
You can run the same design with a function in the FielDHub package,
square_lattice()
.
First, you need to load the FielDHub
package typing,
Then, you can enter the information describing the above design like this:
square <- square_lattice(
t = 64,
r = 3,
k = 8,
l = 1,
plotNumber = 101,
locationNames = "FARGO",
seed = 1233
)
Details on the inputs entered in square_lattice()
above
The description for the inputs that we used to generate the design,
-
t = 64
is the number of treatments, must be square number. -
r=3
is the number of replicates. -
k = 8
is the number of plots per incomplete block. -
l = 1
is the number of locations. -
plotNumber = 101
is the starting plot number. -
locationNames = "FARGO"
is an optional name for each location. -
seed = 1233
is the random seed to replicate identical randomizations.
Print square
object
To print a summary of the information that is in the object
square
, we can use the generic function
print()
.
print(square)
Square Lattice Design
Efficiency of design:
Level Blocks D-Efficiency A-Efficiency A-Bound
1 1 3 1.0000000 1.0000000 1.0000000
2 2 24 0.8735805 0.8571429 0.8571429
Information on the design parameters:
List of 7
$ Reps : num 3
$ IBlocks : num 8
$ NumberTreatments: num 64
$ NumberLocations : num 1
$ Locations : chr "FARGO"
$ seed : num 1233
$ lambda : num 0.333
10 First observations of the data frame with the square_lattice field book:
ID LOCATION PLOT REP IBLOCK UNIT ENTRY TREATMENT
1 1 FARGO 101 1 1 1 3 G-3
2 2 FARGO 102 1 1 2 38 G-38
3 3 FARGO 103 1 1 3 37 G-37
4 4 FARGO 104 1 1 4 24 G-24
5 5 FARGO 105 1 1 5 40 G-40
6 6 FARGO 106 1 1 6 29 G-29
7 7 FARGO 107 1 1 7 25 G-25
8 8 FARGO 108 1 1 8 53 G-53
9 9 FARGO 109 1 2 1 61 G-61
10 10 FARGO 110 1 2 2 23 G-23
Access to square
object
The square_lattice()
function returns a list consisting
of all the information displayed in the output tabs in the FielDHub app:
design information, plot layout, plot numbering, entries list, and field
book. These are accessible by the $
operator,
i.e. square$layoutRandom
or
square$fieldBook
.
square$fieldBook
is a list containing information about
every plot in the field, with information about the location of the plot
and the treatment in each plot. As seen in the output below, the field
book has columns for ID
, LOCATION
,
PLOT
, REP
, IBLOCK
,
UNIT
, ENTRY
, and TREATMENT
.
field_book <- square$fieldBook
head(square$fieldBook, 10)
ID LOCATION PLOT REP IBLOCK UNIT ENTRY TREATMENT
1 1 FARGO 101 1 1 1 3 G-3
2 2 FARGO 102 1 1 2 38 G-38
3 3 FARGO 103 1 1 3 37 G-37
4 4 FARGO 104 1 1 4 24 G-24
5 5 FARGO 105 1 1 5 40 G-40
6 6 FARGO 106 1 1 6 29 G-29
7 7 FARGO 107 1 1 7 25 G-25
8 8 FARGO 108 1 1 8 53 G-53
9 9 FARGO 109 1 2 1 61 G-61
10 10 FARGO 110 1 2 2 23 G-23