Hi,
I'm trying to export in html my .stmd file using markstat by German Rodriguez but it keeps returning the error 3621 attempt to write read-only file. I am running the newest version of markstat and have actually exported successfully but for some reason, making changes in the .stmd file stops me from successfully exporting. That being said, that doesn't allow for a workaround as I need those changes to the .stmd file for the content I want in my html file.
Here is a simple version of code in my stmd file that produces the error:
And here is the do file code for markstat:
Any help would be appreciated. Thanks!
I'm trying to export in html my .stmd file using markstat by German Rodriguez but it keeps returning the error 3621 attempt to write read-only file. I am running the newest version of markstat and have actually exported successfully but for some reason, making changes in the .stmd file stops me from successfully exporting. That being said, that doesn't allow for a workaround as I need those changes to the .stmd file for the content I want in my html file.
Here is a simple version of code in my stmd file that produces the error:
Code:
% Madagascar 2019 Read-Me File % Nicolas Perreault % 13 June 2021 **BACKGROUND**\ This Read-Me file will explain every do file necessary to first generate our cleaned 2019 /// data and then generate our cleaned 3-wave panel data. Most variables are only compatible /// between 2012 and 2019 which means values were left missing for those variables in 2004. /// The order of this Read-Me file is respective to the order the do files must be run. /// The importance of respecting the order for running them being with respect to their variable /// interdependancies. Not doing so will prevent the do files from running or worst, lead to /// inconspicuous variable errors. **Do Files**\ ## 1. Introduction
And here is the do file code for markstat:
Code:
clear all set more off capture log off capture ssc install markstat capture ssc install whereis whereis pandoc "C:\Program Files\Pandoc\pandoc.exe" cd "${cdir}\do" markstat using Nicolas_readme
Comment