{
landguzzlers.selectAll(".guzzlerrects")
.data(data)
.join("rect")
.attr("x", replace_this_with_some_value_or_calculation)
.attr("y", replace_this_with_some_value_or_calculation_from_d)
.attr("width", replace_this_with_some_value_or_calculation_from_d)
.attr("height", replace_this_with_some_value_or_calculation_from_d)
.style("propertyname", replace_this_with_some_value_or_calculation_from_d)
.attr("class", "guzzlerrects");
landguzzlers.selectAll(".guzzlertitles")
.data(data)
.join("text")
.attr("x", replace_this_with_some_value_or_calculation)
.attr("class", "guzzlertitles");
}