{"id":4406,"date":"2024-09-15T10:54:10","date_gmt":"2024-09-15T18:54:10","guid":{"rendered":"https:\/\/crm270s.abramjmeister.com\/?p=4406"},"modified":"2024-09-15T10:54:10","modified_gmt":"2024-09-15T18:54:10","slug":"r-%ec%a7%80%ec%b6%9c-%ec%95%a1%ec%88%98-csv-monthly-spencing-into-csv","status":"publish","type":"post","link":"https:\/\/crm270s.mycpamytax.com\/?p=4406","title":{"rendered":"R \uc9c0\ucd9c-\uc561\uc218.csv monthly spending into .csv"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>library(RSQLite)\nlibrary(DBI)\nlibrary(ggplot2)\n\n# Define the path to your SQLite database\ndb_path &lt;- \"\/home\/jbyungrokim\/CSV\/CSV.db\"\n\n# Connect to the SQLite database\nconn &lt;- dbConnect(RSQLite::SQLite(), dbname = db_path)\n\n# Adjust the query to calculate the sum for each item in September 2024\nquery &lt;- \"\nSELECT \n    Item, \n    SUM(Pay_Amount) AS Total_Spent\nFROM \n    '\uc9c0\ucd9c-\uc561\uc218_2024_09_14'\nWHERE \n    strftime('%Y-%m', '20' || substr(Date_Transaction, 7, 2) || '-' || substr(Date_Transaction, 1, 2) || '-' || substr(Date_Transaction, 4, 2)) = '2024-09'\nGROUP BY \n    Item\nORDER BY \n    Total_Spent DESC;\n\"\n\n# Execute the query and store the result in a data frame\nSeptember_2024_sum &lt;- dbGetQuery(conn, query)\n\n# Print the result\nprint(\"Sum of Pay_Amount by Item for September 2024:\")\nprint(September_2024_sum)\n\n# Save the result as a CSV file\ncsv_file_path &lt;- \"\/home\/jbyungrokim\/Downloads\/September_2024_sum.csv\"\nwrite.csv(September_2024_sum, file = csv_file_path, row.names = FALSE)\nprint(paste(\"Data has been written to\", csv_file_path))\n\n# Create a bar graph using ggplot2\nggplot(September_2024_sum, aes(x = reorder(Item, -Total_Spent), y = Total_Spent)) +\n  geom_bar(stat = \"identity\", fill = \"steelblue\") +\n  theme_minimal() +\n  labs(title = \"Total Spending by Item for September 2024\",\n       x = \"Item\",\n       y = \"Total Spent ($)\") +\n  theme(axis.text.x = element_text(angle = 45, hjust = 1))\n\n# Close the connection to the SQLite database\ndbDisconnect(conn)\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[26],"tags":[],"class_list":["post-4406","post","type-post","status-publish","format-standard","hentry","category-codes"],"_links":{"self":[{"href":"https:\/\/crm270s.mycpamytax.com\/index.php?rest_route=\/wp\/v2\/posts\/4406","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/crm270s.mycpamytax.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/crm270s.mycpamytax.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/crm270s.mycpamytax.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/crm270s.mycpamytax.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4406"}],"version-history":[{"count":0,"href":"https:\/\/crm270s.mycpamytax.com\/index.php?rest_route=\/wp\/v2\/posts\/4406\/revisions"}],"wp:attachment":[{"href":"https:\/\/crm270s.mycpamytax.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4406"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/crm270s.mycpamytax.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4406"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/crm270s.mycpamytax.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4406"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}