<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://groupkos.com:443/chrysalis/index.php?action=history&amp;feed=atom&amp;title=Temporal_Anomalies_Python_code</id>
	<title>Temporal Anomalies Python code - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://groupkos.com:443/chrysalis/index.php?action=history&amp;feed=atom&amp;title=Temporal_Anomalies_Python_code"/>
	<link rel="alternate" type="text/html" href="https://groupkos.com:443/chrysalis/index.php?title=Temporal_Anomalies_Python_code&amp;action=history"/>
	<updated>2026-04-20T11:31:11Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://groupkos.com:443/chrysalis/index.php?title=Temporal_Anomalies_Python_code&amp;diff=1101&amp;oldid=prev</id>
		<title>Don86326: Created page with &quot;{{menuTemporalAnomalies}}  &lt;div style=&quot;background-color:azure; border:1px outset azure; padding:0 20px; max-width:860px; margin:0 auto; &quot;&gt; The temporal anomalies data file was sourced by Prof. Maylor. * File:Temporal Records Oct 2023 to April 2024.docx   ===Data conditioning from/to file=== &lt;pre style=&quot;margin-left:3em; font:normal 14px terminal;&quot;&gt; # Python code to read &#039;Extracted_Temporal_Records.csv&#039;, # condition date field to Python compatible, and  # print to scre...&quot;</title>
		<link rel="alternate" type="text/html" href="https://groupkos.com:443/chrysalis/index.php?title=Temporal_Anomalies_Python_code&amp;diff=1101&amp;oldid=prev"/>
		<updated>2024-04-19T00:34:00Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;{{menuTemporalAnomalies}}  &amp;lt;div style=&amp;quot;background-color:azure; border:1px outset azure; padding:0 20px; max-width:860px; margin:0 auto; &amp;quot;&amp;gt; The temporal anomalies data file was sourced by Prof. Maylor. * &lt;a href=&quot;/chrysalis/index.php/File:Temporal_Records_Oct_2023_to_April_2024.docx&quot; title=&quot;File:Temporal Records Oct 2023 to April 2024.docx&quot;&gt;File:Temporal Records Oct 2023 to April 2024.docx&lt;/a&gt;   ===Data conditioning from/to file=== &amp;lt;pre style=&amp;quot;margin-left:3em; font:normal 14px terminal;&amp;quot;&amp;gt; # Python code to read &amp;#039;Extracted_Temporal_Records.csv&amp;#039;, # condition date field to Python compatible, and  # print to scre...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{menuTemporalAnomalies}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background-color:azure; border:1px outset azure; padding:0 20px; max-width:860px; margin:0 auto; &amp;quot;&amp;gt;&lt;br /&gt;
The temporal anomalies data file was sourced by Prof. Maylor.&lt;br /&gt;
* [[File:Temporal Records Oct 2023 to April 2024.docx]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Data conditioning from/to file===&lt;br /&gt;
&amp;lt;pre style=&amp;quot;margin-left:3em; font:normal 14px terminal;&amp;quot;&amp;gt;&lt;br /&gt;
# Python code to read &amp;#039;Extracted_Temporal_Records.csv&amp;#039;,&lt;br /&gt;
# condition date field to Python compatible, and &lt;br /&gt;
# print to screen and to file as &amp;#039;output.csv&amp;#039;.&lt;br /&gt;
# &lt;br /&gt;
# Code prompted by [[User:XenoEngineer|XenoEngineer]] @claude.ai Haiki 3&lt;br /&gt;
&lt;br /&gt;
import pandas as pd&lt;br /&gt;
&lt;br /&gt;
pd.set_option(&amp;#039;display.max_rows&amp;#039;, None)  # Show all rows&lt;br /&gt;
pd.set_option(&amp;#039;display.max_columns&amp;#039;, None)  # Show all columns&lt;br /&gt;
pd.set_option(&amp;#039;display.width&amp;#039;, None)  # Don&amp;#039;t truncate the output width&lt;br /&gt;
&lt;br /&gt;
df = pd.read_csv(&amp;#039;Extracted_Temporal_Records.csv&amp;#039;)&lt;br /&gt;
df[&amp;#039;Date&amp;#039;] = pd.to_datetime(df[&amp;#039;Date&amp;#039;], format=&amp;#039;mixed&amp;#039;, errors=&amp;#039;coerce&amp;#039;)&lt;br /&gt;
&lt;br /&gt;
#  Print the python-ready CSV data to the screen&lt;br /&gt;
print(df)&lt;br /&gt;
&lt;br /&gt;
#  Print the python-ready CSV data to file&lt;br /&gt;
df.to_csv(&amp;#039;output.csv&amp;#039;, index=False)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Don86326</name></author>
	</entry>
</feed>