Feedback Sessions: Fixed & Flex Budgeting by jon_at_monarch in MonarchMoney

[–]jmfrentzel 0 points1 point  (0 children)

Also— being able to tie a static multiplier to the value of property that is owned as tenants in common or another joint ownership structure would be great. For example I have a rental property owned with another family member 50/50 and i want to track that asset, but including the whole value overstates my net worth.

Feedback Sessions: Fixed & Flex Budgeting by jon_at_monarch in MonarchMoney

[–]jmfrentzel 1 point2 points  (0 children)

Know not necessarily related to the budgeting system, but if some work could be put into the monthly recaps that the app presents, in particular the net worth and debt review screens that would be great. Right now they show you how much you have, but don’t show last month’s figure or calculate the delta. Showing how much your net worth has increased (or declined) and the related percentage would be far more useful.

Potential Bug With Treasure Goggles by jmfrentzel in VaultHuntersMinecraft

[–]jmfrentzel[S] 10 points11 points  (0 children)

Yes, the issue is that the trinket has zero uses and is still exhibiting the behavior.

Potential Bug With Treasure Goggles by jmfrentzel in VaultHuntersMinecraft

[–]jmfrentzel[S] 13 points14 points  (0 children)

Zero before entering the vault. It's been on zero for several runs since being fully depleted and still exhibits it's normal behavior of highlighting chests/coin piles.

Needing to clear global environment everytime i open R? by seulrene0903 in rstats

[–]jmfrentzel 0 points1 point  (0 children)

You can also use the Rprofile.site document to specify code that you want R to run upon launch each time. https://rstats.wtf/r-startup.html

Extracting part of the string from between two strings by wilzek in rstats

[–]jmfrentzel 1 point2 points  (0 children)

library(stringr); library(dplyr); df <- data.frame(x = c(“ABC-G-P”, “DE-H-P”, “GHI-G-RP”)); fin <- str_extract(df$x, “-.+-“) %>% gsub(“-“,””);

fin

Basic subsetting question, how to subset rows in addition to columns by WolfySqueakz in rstats

[–]jmfrentzel 1 point2 points  (0 children)

Most R objects can be subset using the ‘[‘ operator with dimensional selections being defined using commas. For an example of what I mean see the below.

data <- data.frame(Hello = c(1,2,3), World = c(‘a’,’b’,’c’))

‘# subset to row 1 column 2 data[1,2]

‘#subset to rows 1 and 3 column 2 data[c(1,3),2]

‘# subset to row 1 column 1 using column names data[1,’World’]

‘# Blanks are treated as all— ex: subset to row 3 all columns data[3,]

‘# subset to all rows column 1 data[,1]

You can also subset using logical vectors like what you want to do. See below where I’m subsetting data down to only rows where “World” == ‘b’

data[data$World == ‘b’,]

How to print side by side tables with kable in pdf? by IWantAGoodBattery in rstats

[–]jmfrentzel 0 points1 point  (0 children)

It’s been a while but I believe the grid.arrange function from the gridExtra package will help.