<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Michael Ewens :: Tepper School of Business</title>
	<atom:link href="http://ewens.tepper.cmu.edu/feed/" rel="self" type="application/rss+xml" />
	<link>http://ewens.tepper.cmu.edu</link>
	<description>Tepper School of Business, Carnegie Mellon University</description>
	<lastBuildDate>Sun, 19 May 2013 20:40:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>LateX files for top finance journals</title>
		<link>http://ewens.tepper.cmu.edu/2013/05/19/latex-files-for-top-finance-journals/</link>
		<comments>http://ewens.tepper.cmu.edu/2013/05/19/latex-files-for-top-finance-journals/#comments</comments>
		<pubDate>Sun, 19 May 2013 20:34:19 +0000</pubDate>
		<dc:creator>mewens</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://ewens.tepper.cmu.edu/?p=231</guid>
		<description><![CDATA[Richard Stanton provides an excellent source of tex files (styles, bst, etc.) for major finance journals. Journal of Finance style file Journal of Finance bibtex style file JFE style file JFE bibtex style file Review of Financial Studies (RFS) style file Review of Financial Studies (RFS) bibtex style file]]></description>
				<content:encoded><![CDATA[<p>Richard Stanton provides an <a href="https://bitbucket.org/rhstanton/texintro/overview">excellent source of tex files</a> (styles, bst, etc.) for major finance journals.</p>
<ul>
<li><a href="https://bitbucket.org/rhstanton/texintro/src/b8ef4cae19dd/jf/jf.sty?at=default"><span style="line-height: 13px;">Journal of Finance style file</span></a></li>
<li><a href="https://bitbucket.org/rhstanton/texintro/src/b8ef4cae19dd/jf/jf.bst?at=default">Journal of Finance bibtex style file</a></li>
<li><a href="https://bitbucket.org/rhstanton/texintro/src/b8ef4cae19dd/jfe/jfe.sty?at=default">JFE style file</a></li>
<li><a href="https://bitbucket.org/rhstanton/texintro/src/b8ef4cae19dd/jfe/jfe.bst?at=default">JFE bibtex style file</a></li>
<li><a href="https://bitbucket.org/rhstanton/texintro/src/b8ef4cae19dd/rfs/rfs.sty?at=default">Review of Financial Studies (RFS) style file</a></li>
<li><a href="https://bitbucket.org/rhstanton/texintro/src/b8ef4cae19dd/rfs/rfs.bst?at=default">Review of Financial Studies (RFS) bibtex style file</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://ewens.tepper.cmu.edu/2013/05/19/latex-files-for-top-finance-journals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stata latex summary tables: a hack</title>
		<link>http://ewens.tepper.cmu.edu/2012/08/04/stata-latex-summary-tables-a-hack/</link>
		<comments>http://ewens.tepper.cmu.edu/2012/08/04/stata-latex-summary-tables-a-hack/#comments</comments>
		<pubDate>Sat, 04 Aug 2012 15:18:00 +0000</pubDate>
		<dc:creator>mewens</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://ewens.tepper.cmu.edu/?p=186</guid>
		<description><![CDATA[The Stata package &#8220;eststo&#8221; has a nice set of commands to create summary statistics tables. These commands can create &#8220;fragments&#8221; that you can dynamically add to tables in a main tex document. Unfortunately, the output of the following example starts with an &#8216;\hline&#8217; and doesn&#8217;t play well with latex: eststo clear eststo: estpost tabstat var1 [...]]]></description>
				<content:encoded><![CDATA[<p>The Stata package &#8220;<a href="http://repec.org/bocode/e/estout/eststo.html">eststo</a>&#8221; has a nice set of commands to create summary statistics tables. These commands can create &#8220;<a href="http://repec.org/bocode/e/estout/hlp_esttab.html#format">fragments</a>&#8221; that you can dynamically add to tables in a main tex document. Unfortunately, the output of the following example starts with an &#8216;\hline&#8217; and doesn&#8217;t play well with latex:</p>
<p><code>eststo clear </code><br />
<code>eststo: estpost tabstat var1 var2 var3, listwise statistics(mean sd) columns(statistics) </code></p>
<p>Saving to a tex file:</p>
<p><code>esttab using "../writing/tables/summary.tex", main(mean) aux(sd) nostar unstack nonote nomtitle nonumber replace label fragment </code></p>
<p>creates a tex file that starts with &#8216;hline.&#8217; When combined with a tabular environment with the &#8216;\input&#8217; command (here \input{tables/summary.tex}) you will get a &#8220;Misplaced \noalign&#8221; error. I <a href="http://www.latex-community.org/forum/viewtopic.php?f=45&amp;t=3970">found a partial solution online</a> with some changes.</p>
<p>1. Add <code>\makeatletter</code> followed by <code>\newcommand*\ExpandableInput[1]{\@@input#1 }</code> to your header</p>
<p>2.  Make sure the header also has <code>\makeatother</code> as well</p>
<p>3.  Replace the \input command with <code>\ExpandableInput{tables/summary.tex}</code></p>
<p><code></code>4.  If you want to end the table with more &#8216;hline&#8221;s, put a line break after the above command &#8216;\\&#8217;</p>
<p>&#8220;Simple&#8221; as that&#8230;.</p>]]></content:encoded>
			<wfw:commentRss>http://ewens.tepper.cmu.edu/2012/08/04/stata-latex-summary-tables-a-hack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Bootstrap Sample in Matlab</title>
		<link>http://ewens.tepper.cmu.edu/2012/05/18/simple-bootstrap-sample-in-matlab/</link>
		<comments>http://ewens.tepper.cmu.edu/2012/05/18/simple-bootstrap-sample-in-matlab/#comments</comments>
		<pubDate>Fri, 18 May 2012 15:02:04 +0000</pubDate>
		<dc:creator>mewens</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://ewens.tepper.cmu.edu/?p=228</guid>
		<description><![CDATA[Let x be your vector of data which has to be bootstrapped. For each instance of the loop write: x = x(floor(rows(x)*rand(rows(x),1))+1,:); % bootstrap observations Now we have a matrix with the same number of rows and columns, but with re-sampled data with replacement. A one line bootstrap! (Modified code from John Cochrane)]]></description>
				<content:encoded><![CDATA[<p>Let x be your vector of data which has to be <a href="http://en.wikipedia.org/wiki/Bootstrapping">bootstrapped</a>. For each instance of the loop write:</p>
<p><code>x = x(floor(rows(x)*rand(rows(x),1))+1,:); % bootstrap observations</code></p>
<p>Now we have a matrix with the same number of rows and columns, but with re-sampled data with replacement. A one line bootstrap! (Modified code from John Cochrane)</p>]]></content:encoded>
			<wfw:commentRss>http://ewens.tepper.cmu.edu/2012/05/18/simple-bootstrap-sample-in-matlab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Remote Files in Matlab</title>
		<link>http://ewens.tepper.cmu.edu/2012/05/18/using-remote-files-in-matlab/</link>
		<comments>http://ewens.tepper.cmu.edu/2012/05/18/using-remote-files-in-matlab/#comments</comments>
		<pubDate>Fri, 18 May 2012 15:00:58 +0000</pubDate>
		<dc:creator>mewens</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://ewens.tepper.cmu.edu/?p=226</guid>
		<description><![CDATA[If you have an FTP server set-up somewhere with ample space and bandwidth, Matlab can store and retrieve its files and data remotely. Just use these simple commands to connect and disconnect: % File to connect to the server where my Matlab/data resides % connect to the db f = ftp(&#8216;yourdomain.com&#8217;, &#8216;user&#8217;, &#8216;password&#8217;); % change [...]]]></description>
				<content:encoded><![CDATA[<p>If you have an FTP server set-up somewhere with ample space and bandwidth, Matlab can store and retrieve its files and data remotely. Just use these simple commands to connect and disconnect:</p>
<p><code>% File to connect to the server where my Matlab/data resides</code></p>
<p>% connect to the db<br />
f = ftp(&#8216;yourdomain.com&#8217;, &#8216;user&#8217;, &#8216;password&#8217;);</p>
<p>% change the directory<br />
cd(f, &#8216;matlab&#8217;);</p>
<p>% now change the directory that we want to download the directory<br />
cd &#8216;/&#8217;;</p>
<p>% Download the directory<br />
mget(f, &#8216;remote_dir&#8217;);</p>
<p>% *****************<br />
% INSERT PROGRAM HERE<br />
% *****************</p>
<p>% when done move a directory here<br />
cd ..<br />
% now move the directory back to the server<br />
mput(f, &#8216;remote_dir&#8217;);<br />
disp(&#8216;Files have been put back on the server&#8217;);</p>
<p>% close the connect<br />
close(f);</p>]]></content:encoded>
			<wfw:commentRss>http://ewens.tepper.cmu.edu/2012/05/18/using-remote-files-in-matlab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Indicator function in Latex</title>
		<link>http://ewens.tepper.cmu.edu/2011/11/12/indicator-function-in-latex/</link>
		<comments>http://ewens.tepper.cmu.edu/2011/11/12/indicator-function-in-latex/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 17:40:02 +0000</pubDate>
		<dc:creator>mewens</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[latex]]></category>

		<guid isPermaLink="false">http://ewens.tepper.cmu.edu/?p=126</guid>
		<description><![CDATA[Before \begin{document} \usepackage{bbm} and in the text: \mathbbm{1}\{ Something \} Source.]]></description>
				<content:encoded><![CDATA[<p>Before <code>\begin{document}</code></p>
<p><code>\usepackage{bbm}<br />
</code><br />
and in the text:</p>
<p><code>\mathbbm{1}\{ Something \}</code></p>
<p><a href="http://www.freak-search.com/en/thread/886431/indicator_function">Source</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://ewens.tepper.cmu.edu/2011/11/12/indicator-function-in-latex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple R functions to keep or remove data frame columns</title>
		<link>http://ewens.tepper.cmu.edu/2011/05/17/simple-r-functions-to-keep-or-remove-data-frame-columns/</link>
		<comments>http://ewens.tepper.cmu.edu/2011/05/17/simple-r-functions-to-keep-or-remove-data-frame-columns/#comments</comments>
		<pubDate>Tue, 17 May 2011 19:43:44 +0000</pubDate>
		<dc:creator>mewens</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ewens.tepper.cmu.edu/?p=101</guid>
		<description><![CDATA[This function removes columns from a data frame by name: removeCols &#60;- function(data, cols){ return(data[,!names(data) %in% cols]) } This function keeps columns of a data frame by name: keepCols &#60;- function(data, cols){ return(data[,names(data) %in% cols]) } or just one function colKeepRemove &#60;- function(data, cols, remove=1){ if(remove == 1){ return(data[,!names(data) %in% cols]) } else { return(data[,!names(data) %in% cols])  [...]]]></description>
				<content:encoded><![CDATA[<p>This function removes columns from a data frame by name:</p>
<p><code>removeCols &lt;- function(data, cols){	return(data[,!names(data) %in% cols]) }</code></p>
<p>This function keeps columns of a data frame by name:</p>
<p><code>keepCols &lt;- function(data, cols){</code><br />
<code>return(data[,names(data) %in% cols]) }</code></p>
<p>or just one function</p>
<p><code>colKeepRemove &lt;- function(data, cols, remove=1){</code><br />
<code>if(remove == 1){		return(data[,!names(data) %in% cols])	}</code><br />
<code>else {		return(data[,!names(data) %in% cols]) 	}}</code></p>
<p>&nbsp;</p>]]></content:encoded>
			<wfw:commentRss>http://ewens.tepper.cmu.edu/2011/05/17/simple-r-functions-to-keep-or-remove-data-frame-columns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running sums in Stata</title>
		<link>http://ewens.tepper.cmu.edu/2011/01/04/running-sums-in-stata/</link>
		<comments>http://ewens.tepper.cmu.edu/2011/01/04/running-sums-in-stata/#comments</comments>
		<pubDate>Tue, 04 Jan 2011 14:00:23 +0000</pubDate>
		<dc:creator>mewens</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[stata]]></category>

		<guid isPermaLink="false">http://ewens.tepper.cmu.edu/?p=65</guid>
		<description><![CDATA[Perhaps it is bad that I didn&#8217;t know this before, but the following code for Stata would have saved a week off of my dissertation work.  Suppose that you have data structured like so: firm_id,date,amount and you want to create a new variable that is the total amount as of each date for each firm. [...]]]></description>
				<content:encoded><![CDATA[<p>Perhaps it is bad that I didn&#8217;t know this before, but the following code for Stata would have saved a week off of my dissertation work.  Suppose that you have data structured like so:</p>
<p><code>firm_id,date,amount</code></p>
<p>and you want to create a new variable that is the total amount as of each date for each firm.  In Stata, you simply type:</p>
<p><code>sort firm_id date</code><br />
<code>bysort firm_id: gen total_t = sum(amount)</code></p>
<p>Note the use of &#8216;<a href="http://www.stata.com/help.cgi?Generate">gen</a>&#8216; rather than &#8216;<em><a href="http://www.stata.com/help.cgi?egen">egen</a></em>.&#8217; The &#8216;sum&#8217; command differs by the type of generate command (i.e. gen or egen), so about 500 lines of loops written in Stata code could be condensed in a few lines.  Stata needs to fix the &#8216;egen&#8217; and &#8216;gen&#8217; distinction or I need to port more of my projects to R.</p>]]></content:encoded>
			<wfw:commentRss>http://ewens.tepper.cmu.edu/2011/01/04/running-sums-in-stata/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Latex regression and summary tables in Stata</title>
		<link>http://ewens.tepper.cmu.edu/2011/01/04/latex-regression-and-summary-tables-in-stata/</link>
		<comments>http://ewens.tepper.cmu.edu/2011/01/04/latex-regression-and-summary-tables-in-stata/#comments</comments>
		<pubDate>Tue, 04 Jan 2011 13:58:48 +0000</pubDate>
		<dc:creator>mewens</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[latex]]></category>
		<category><![CDATA[stata]]></category>
		<category><![CDATA[tables]]></category>

		<guid isPermaLink="false">http://ewens.tepper.cmu.edu/?p=63</guid>
		<description><![CDATA[A clean, well organized latex table is difficult to build. If you do a lot of analysis in Stata, there are several tools to output latex tables of your regressions or summary statistics. These packages do not always work perfectly with the standard options. Below I present two example code snippets to produce a latex [...]]]></description>
				<content:encoded><![CDATA[<p>A clean, well organized latex table is difficult to build.  If you do a lot of analysis in Stata, there are several tools to output latex tables of your regressions or summary statistics.  These packages do not always work perfectly with the standard options.  Below I present two example code snippets to produce a latex table of a set of regressions that includes a IV estimator and a summary statistics table that compares two groups in a database.  Each uses the <a href="http://repec.org/bocode/e/estout/">eststo package</a>.</p>
<p><strong>Regression Table with Multiple Equations and Stages</strong></p>
<p>Here I run a couple of limited dependent variable models and a two-stage bivariate probit with an IV.  The output isn&#8217;t perfect, but it works for pre-submission distribution.</p>
<p><script src="http://gist.github.com/361415.js"></script></p>
<p>The output looks like this:</p>
<p><a title="View Latex regression output from eststo on Scribd" href="http://www.scribd.com/doc/29669150/Latex-regression-output-from-eststo" style="margin: 12px auto 6px auto; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none; display: block; text-decoration: underline;">Latex regression output from eststo</a> <object id="doc_787590025690274" name="doc_787590025690274" height="500" width="100%" type="application/x-shockwave-flash" data="http://d1.scribdassets.com/ScribdViewer.swf" style="outline:none;" rel="media:document" resource="http://d1.scribdassets.com/ScribdViewer.swf?document_id=29669150&#038;access_key=key-9dxl9jdjk355kd900nw&#038;page=1&#038;viewMode=list" xmlns:media="http://search.yahoo.com/searchmonkey/media/" xmlns:dc="http://purl.org/dc/terms/" ><param name="movie" value="http://d1.scribdassets.com/ScribdViewer.swf"><param name="wmode" value="opaque"><param name="bgcolor" value="#ffffff"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="FlashVars" value="document_id=29669150&#038;access_key=key-9dxl9jdjk355kd900nw&#038;page=1&#038;viewMode=list"><embed id="doc_787590025690274" name="doc_787590025690274" src="http://d1.scribdassets.com/ScribdViewer.swf?document_id=29669150&#038;access_key=key-9dxl9jdjk355kd900nw&#038;page=1&#038;viewMode=list" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="500" width="100%" wmode="opaque" bgcolor="#ffffff"></embed></object>	</p>
<p><strong>Summary statistics with a by variable</strong></p>
<p>Next, consider summarizing the characteristics of two groups in your data.  For example, I want to compare the age, number of boards seats and other features of venture capital spinoff founders to everyone else.  </p>
<p><script src="http://gist.github.com/361423.js"></script></p>
<p>The output will look like this:</p>
<p><a title="View Found on Scribd" href="http://www.scribd.com/doc/29669266/Found" style="margin: 12px auto 6px auto; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none; display: block; text-decoration: underline;">Found</a> <object id="doc_596590822087790" name="doc_596590822087790" height="500" width="100%" type="application/x-shockwave-flash" data="http://d1.scribdassets.com/ScribdViewer.swf" style="outline:none;" rel="media:document" resource="http://d1.scribdassets.com/ScribdViewer.swf?document_id=29669266&#038;access_key=key-2glxu6yf5sg47rimr1of&#038;page=1&#038;viewMode=list" xmlns:media="http://search.yahoo.com/searchmonkey/media/" xmlns:dc="http://purl.org/dc/terms/" ><param name="movie" value="http://d1.scribdassets.com/ScribdViewer.swf"><param name="wmode" value="opaque"><param name="bgcolor" value="#ffffff"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="FlashVars" value="document_id=29669266&#038;access_key=key-2glxu6yf5sg47rimr1of&#038;page=1&#038;viewMode=list"><embed id="doc_596590822087790" name="doc_596590822087790" src="http://d1.scribdassets.com/ScribdViewer.swf?document_id=29669266&#038;access_key=key-2glxu6yf5sg47rimr1of&#038;page=1&#038;viewMode=list" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="500" width="100%" wmode="opaque" bgcolor="#ffffff"></embed></object>	</p>
<p>The full details of the <a href="http://repec.org/bocode/e/estout/hlp_esttab.html">esttab</a>, <a href="http://repec.org/bocode/e/estout/hlp_estpost.html">estpost</a> and <a href="http://repec.org/bocode/e/estout/hlp_eststo.html">eststo</a> have many more options and a lot of <a href="http://repec.org/bocode/e/estout/advanced.html">examples</a>.  </p>]]></content:encoded>
			<wfw:commentRss>http://ewens.tepper.cmu.edu/2011/01/04/latex-regression-and-summary-tables-in-stata/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stata, ODBC and date columns</title>
		<link>http://ewens.tepper.cmu.edu/2011/01/04/stata-odbc-and-date-columns/</link>
		<comments>http://ewens.tepper.cmu.edu/2011/01/04/stata-odbc-and-date-columns/#comments</comments>
		<pubDate>Tue, 04 Jan 2011 13:57:47 +0000</pubDate>
		<dc:creator>mewens</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[odbc]]></category>
		<category><![CDATA[stata]]></category>

		<guid isPermaLink="false">http://ewens.tepper.cmu.edu/?p=61</guid>
		<description><![CDATA[Stata has a ton of flexilbility for creating and manipulating dates. However, if you want to save Stata data to an external database (e.g. Accesss, PostgreSQL, MySQL, etc.) the numeric date format in Stata will be difficult to interpret outside the program. My use case involved working with Stata to merge and clean some data [...]]]></description>
				<content:encoded><![CDATA[<p>Stata has a ton of flexilbility for <a href="http://www.stata.com/help.cgi?dates_and_times">creating and manipulating dates</a>.  However, if you want to save Stata data to an external database (e.g. Accesss, PostgreSQL, <a href="http://www.mysql.com/">MySQL</a>, etc.) the numeric date format in Stata will be difficult to interpret outside the program.  My use case involved working with Stata to merge and clean some data that was pushed to a MySQL database with <a href="http://www.stata.com/help.cgi?odbc">odbc</a> and later loaded in <a href="http://www.r-project.org/">R</a> with its <a href="http://cran.r-project.org/web/packages/RODBC/index.html">odbc functionality</a>.  It was in the last step that I learned of Stata&#8217;s dating conventions when writing to external databases.  So <a href="http://www.stata.com/statalist/archive/2010-05/msg01190.html">I asked the Stata list</a>.</p>
<p>A <a href="http://www.stata.com/statalist/archive/2010-05/msg01201.html">very helpful subsciber</a> presented a solution very similar to one that I mocked up.  With some of the code posted on the Statalist and some new additions, I present <a href="http://pastebin.com/8ywbft1S">odbc2create</a>. UPDATE: I fixed an issue when dealing with a database with no dates and had to add a loop.</p>
<p>This modified odbc command does the following:</p>
<ul>
<li>searches all your variables for dates (they must be formatted as such or Stata&#8217;s ability to detect them is impossible)</li>
<li>converts those dates to the YYYY-MM-DD format</li>
<li>inserts the dates into your mysql database as strings</li>
<li>re-types those date columns in the newly created database as DATEs</li>
</ul>
<p>The best part: when you load a table created this way back into Stata, it immediately recognized the DATEs as dates.  I hope they build this functionality into Stata in the future.  One caveat (which may explain why they haven&#8217;t built it internally) is that the ALTER command in the ado file is specific to MySQL.  Someone should generalize the code to recognize the datasource engine and modify the ALTER command accordingly.</p>]]></content:encoded>
			<wfw:commentRss>http://ewens.tepper.cmu.edu/2011/01/04/stata-odbc-and-date-columns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 9/12 queries in 0.003 seconds using disk: basic

 Served from: ewens.tepper.cmu.edu @ 2013-05-23 15:38:08 by W3 Total Cache -->