Displaying 1 result from an estimated 1 matches for "wild_id".
Did you mean:
build_id
2010 Jul 14
1
Write value to PHP webpage
...e to a specific location in .php
code? I simply need to read a particular line in my .php code, then insert
my distance value into a field value that currently has the value ' ' as
a space holder. My code is currently:
# Loop through dataset, summarizing data based on Animal name
wild_ID <-unique(wild$ID)
Animal <-unique(wild$Name)
filepath <-"c:/Jared/Data/Kenya/Wildebeest/Summary/"
# Create an empty dataframe
dat3 <- data.frame(Animal)
for (i in c(1:length(wild_ID))) {
# Create Subset
dat <-subset(wild, ID == wild_ID[i])
# Calculate Sum of Movement,...