I have two csv files. Shown in pictures.
Files are shown in the following link.
https://drive.google.com/drive/folders/1bDr9-gywQuVCcfp18JIwoybecTY-VYvP?usp=sharing
Following code are the current code I did. Now I have to merge table by PdId column.
I need to have the overview of the San Francisco crime data.
Thanks
library(data.table)
fread("~/datasets/crime_location.csv")
fread("~/datasets/crime_detail.csv")
df1 <-("~/datasets/crime_location.csv")
df2 <-("~/datasets/crime_detail.csv")