| da_insert | R Documentation | 
Insert records into a table (e.g. attribute table of a layer) with the arcpy.da module.
da_insert(table.path, d)
| table.path | The file path to the table. | 
| d | The data to write to  | 
(Invisible) The path to the table, i.e. table.path.
## Not run: 
arcpy$env$workspace = tempdir()
arcpy$env$scratchWorkspace = tempdir()
fc = arcpy$management$CopyFeatures(system.file("CA_Counties",
  "CA_Counties_TIGER2016.shp", package = "arcpy"), "CA_Counties")
d = da_read(fc, c("ALAND", "CLASSFP"))
add.d = data.frame(ALAND= 1e4, CLASSFP = "H2",
  stringsAsFactors = FALSE)
da_insert(fc, add.d)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.