{"id":4260,"date":"2024-08-18T16:14:21","date_gmt":"2024-08-19T00:14:21","guid":{"rendered":"https:\/\/crm270s.abramjmeister.com\/?p=4260"},"modified":"2024-08-18T16:14:21","modified_gmt":"2024-08-19T00:14:21","slug":"%ec%a7%80%ec%b6%9c-%ec%95%a1%ec%88%98-r-bar-graph-by-month","status":"publish","type":"post","link":"https:\/\/crm270s.mycpamytax.com\/?p=4260","title":{"rendered":"\uc9c0\ucd9c-\uc561\uc218 R Bar Graph by Month"},"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# Corrected query to get the total spending by each item for July 2024, excluding 'Rent - Monthly' and 'Grocery'\nquery &lt;- \"\nSELECT \n    Item, \n    SUM(Pay_Amount) AS Total_Spent\nFROM \n    '\uc9c0\ucd9c-\uc561\uc218_2024_08_17'\nWHERE \n    substr(Date_Transaction, 1, 2) = '07' \n    AND substr(Date_Transaction, 7, 2) = '24'\nGROUP BY \n    Item\nORDER BY \n    Total_Spent DESC;\n\"\n\n# Execute the query and store the result in a data frame\njuly_spending &lt;- dbGetQuery(conn, query)\n\n# Close the connection to the SQLite database\ndbDisconnect(conn)\n\n# Create a bar graph using ggplot2\nggplot(july_spending, aes(x = reorder(Item, -Total_Spent), y = Total_Spent, fill = Item)) +\n  geom_bar(stat = \"identity\") +\n  labs(title = \"Spending Breakdown by Item - July 2024 (Excluding Rent and Grocery)\",\n       x = \"Item\",\n       y = \"Total Spent\") +\n  theme_minimal() +\n  theme(axis.text.x = element_text(angle = 45, hjust = 1),\n        legend.position = \"none\")<\/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-4260","post","type-post","status-publish","format-standard","hentry","category-codes"],"_links":{"self":[{"href":"https:\/\/crm270s.mycpamytax.com\/index.php?rest_route=\/wp\/v2\/posts\/4260","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=4260"}],"version-history":[{"count":0,"href":"https:\/\/crm270s.mycpamytax.com\/index.php?rest_route=\/wp\/v2\/posts\/4260\/revisions"}],"wp:attachment":[{"href":"https:\/\/crm270s.mycpamytax.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4260"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/crm270s.mycpamytax.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4260"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/crm270s.mycpamytax.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4260"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}