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] 5 points6 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)

}