Displaying 1 result from an estimated 1 matches for "practicename".
Did you mean:
practice_name
2013 Mar 05
0
Meaning of error message when exporting to MS Excel
Hi,
I?m attempting to export data (split into multiple files from one large
dataset) from R to excel using the excel.link package. The code for export
is as follows:
for(i in practicesNN){
#Create relevant data for input
#Separate out all parts of data ? PracticeName is removed from example
data for privacy reasons
detailedH<-dataExport2[dataExport1$PracticeName == i &
dataExport1$RISK_LEVEL == 'High',]
detailedM<-dataExport2[dataExport1$PracticeName == i &
dataExport1$RISK_LEVEL == 'Medium',]
detailedL<-dataExport2[dataExp...