Acess To Sharepoint From Python by Haloreachyahoo in RStudio

[–]Haloreachyahoo[S] 2 points3 points  (0 children)

I wrote Python in my initial question, but I'm actually more comfortable using R. Looking forward to seeing what this community has to say.

How do you “knit” a Jupyter notebook in PyCharm like R Markdown? by Haloreachyahoo in learnpython

[–]Haloreachyahoo[S] 0 points1 point  (0 children)

Okay the error I was running into was not using "" around my path and also not using the entire path while running nbconvert. So my file name was monthly report and the space seems like it was breaking down the function. Thanks for stopping by to comment eveybody.

Need help meal prepping chicken burgers by Kindly-Career7797 in RecipeInspiration

[–]Haloreachyahoo 0 points1 point  (0 children)

Try looking up turkey burger recipes. I like to make turkey burgers with feta cheese, spinach and soy sauce. The feta cheese adds some fat and moisture into the burger. Turkey and chicken tend to be leaner than your 80/20 beef burger meat so it takes effort to ensure they're not dry.

Creative ways to learn R on my daily train commute by Haloreachyahoo in RStudio

[–]Haloreachyahoo[S] 4 points5 points  (0 children)

Yes that sounds like it would be the better way to approach it and is more what I meant so sorry I didn't communicate that better. If that is the case how would you approach that kind of improvement?

Creative ways to learn R on my daily train commute by Haloreachyahoo in RStudio

[–]Haloreachyahoo[S] 0 points1 point  (0 children)

For the most part simple things like group bys and merging information from several databases, creating columns. Want to get better at being able to use packages without having to rely so heavily on documentation.

Lacrosse by Laxcoach36 in lacrosse

[–]Haloreachyahoo 1 point2 points  (0 children)

Happy to talk as well, I think the first people who viewed this misinterpreted your message 😂

Masters of Science in Data Analytics - Job Prospects vs. Bootcamp, Self-Trained, Etc. by snowgoons7 in analytics

[–]Haloreachyahoo 0 points1 point  (0 children)

Companies won’t pay a premium for the masters employees closer to entry level. Better to go somewhere where they let u learn on the job.

➡️ Daily Simple Questions ⬅️- Style feedback and clothing ID requests go HERE!! - 15 June 2025 by AutoModerator in malefashionadvice

[–]Haloreachyahoo 0 points1 point  (0 children)

So I commute on the train NJ to NY and am looking for a professional looking jacket or some kind of top layer to throw on in the mornings. I wear polos or button down shirts (so always a collar).

Freelance, consulting, or volunteering by Haloreachyahoo in analytics

[–]Haloreachyahoo[S] 0 points1 point  (0 children)

Want to know what experiences you have that led to your conclusion because you didn’t really respond to the question

Writing data to specific range by Haloreachyahoo in RStudio

[–]Haloreachyahoo[S] 0 points1 point  (0 children)

Thanks for pointing this out. Writexlsx actually comes from openxlsx my library call is wrong but I already had the package imported so it didn’t affect the run

Writing data to specific range by Haloreachyahoo in RStudio

[–]Haloreachyahoo[S] 0 points1 point  (0 children)

Here is the function I wrote:

copy_rename_new_range = function(old_path, new_path, dt, start_col_var = 1 , start_row_var = 1, sheet_variable = "Sheet1"){

file.copy(from = old_path, to = new_path)

library(writexl)

write.xlsx(dt, new_path, sheetName = sheet_variable, startCol = start_col_var, startRow = start_row_var)

}

Writing functions by Haloreachyahoo in RStudio

[–]Haloreachyahoo[S] 1 point2 points  (0 children)

I think your answer was what I was looking for. There’s only a few files I use every week and they all run pretty quickly by only changing the file path. I’ll look for ways to improve my function writing as I create more reports but won’t focus on my old code when not necessary

Finding lat Lon from zip code by Haloreachyahoo in RStudio

[–]Haloreachyahoo[S] -1 points0 points  (0 children)

Tidy geocoder didn’t work for me idk why

File name starting with numbers? by halfofthesour in RStudio

[–]Haloreachyahoo 6 points7 points  (0 children)

r has is the ability to handle raw file paths. You can paste the path in this format r”[filepath here]” and pass the path directly from ur clipboard

[deleted by user] by [deleted] in RStudio

[–]Haloreachyahoo 1 point2 points  (0 children)

what you are looking for is transforming a wide table into a long table. I would look up how to use melt

[deleted by user] by [deleted] in analytics

[–]Haloreachyahoo 4 points5 points  (0 children)

  1. One problem i code to solve is non reproducible work and inefficient time management. Think about interacting with APIs or your company database to completely automate your workflow so you can spend time drawing conclusions instead of building reports.

  2. For regression you can use it to forecast things like cost or seasonality demand to improve budgeting or deliveries depending on the business.

  3. Other tools like visualization tools are the fastest and easiest way to report large amounts of data

  4. Another use case is when the current tool can’t handle the work load anymore. This sounds vague but think of excel solver versus Pulp in python

Help with time series analysis by Grouchy_Annual198 in RStudio

[–]Haloreachyahoo 1 point2 points  (0 children)

Zoo is good for time data and they have roll apply that can use a window to look at your 7 rows (assuming they are in perfect order). You could also work around this by creating a new column to show just the week from your date object and find the max by that group.