Posts

Showing posts from February, 2024

Digital Archives

 This will be my link to my omkea website featuring Historical Medical findings and Jewish works as a sample of works: https://tylerorofino.omeka.net/

Charts and Graphs with Python

Image
In my code looking at the congress dataset, I mainly looked at military experience and time served in office and graphed the data using python. The link will be down below and ensure the dataset is named 'Congress.csv'. https://colab.research.google.com/drive/1hmc9hK_ZTVLS1lvLBKOLs9j-_CmHQMDs?usp=sharing Edit: these were the images that popped up on my end, here is the code used as well: import pandas as pd import matplotlib.pyplot as plt # Read the CSV file data = pd.read_csv( "Congress.csv" ) # Plotting military experience plt.figure(figsize=( 10 , 5 )) data[ 'COL_MIL' ].value_counts().plot(kind= 'bar' , color= 'blue' ) plt.title( 'Military Experience Distribution in Congress' ) plt.xlabel( 'Military Experience' ) plt.ylabel( 'Number of Congress Members' ) plt.xticks(rotation= 45 ) plt.tight_layout() plt.show() # Plotting total years plt.figure(figsize=( 10 , 5 )) plt.hist(data[ 'TOT_YRS' ].dropna(), bins= ...

Note for self

https://doi.org/10.3886/ICPSR38167.v1 https://en.wikipedia.org/wiki/1967_Plainfield_riots#Aftermath https://en.wikipedia.org/wiki/1967_Newark_riots Long Hot Summer 1967 Data Visualization https://www.google.com/local/place/fid/0x89c3b9f41c20c219:0xcb42c61af9ae5e42/photosphere?iu=https://streetviewpixels-pa.googleapis.com/v1/thumbnail?panoid%3DZ1k_euR_M-9DWo_Z84OfCQ%26cb_client%3Dlu.gallery.gps%26w%3D160%26h%3D106%26yaw%3D326.98257%26pitch%3D0%26thumbfov%3D100&ik=CAISFloxa19ldVJfTS05RFdvX1o4NE9mQ1E%3D

ChatGPT Prompts

https://tyler-orofino.github.io/folium-maps/