this post was submitted on 14 Nov 2023
28 points (93.8% liked)

No Stupid Questions

34507 readers
1385 users here now

No such thing. Ask away!

!nostupidquestions is a community dedicated to being helpful and answering each others' questions on various topics.

The rules for posting and commenting, besides the rules defined here for lemmy.world, are as follows:

Rules (interactive)


Rule 1- All posts must be legitimate questions. All post titles must include a question.

All posts must be legitimate questions, and all post titles must include a question. Questions that are joke or trolling questions, memes, song lyrics as title, etc. are not allowed here. See Rule 6 for all exceptions.



Rule 2- Your question subject cannot be illegal or NSFW material.

Your question subject cannot be illegal or NSFW material. You will be warned first, banned second.



Rule 3- Do not seek mental, medical and professional help here.

Do not seek mental, medical and professional help here. Breaking this rule will not get you or your post removed, but it will put you at risk, and possibly in danger.



Rule 4- No self promotion or upvote-farming of any kind.

That's it.



Rule 5- No baiting or sealioning or promoting an agenda.

Questions which, instead of being of an innocuous nature, are specifically intended (based on reports and in the opinion of our crack moderation team) to bait users into ideological wars on charged political topics will be removed and the authors warned - or banned - depending on severity.



Rule 6- Regarding META posts and joke questions.

Provided it is about the community itself, you may post non-question posts using the [META] tag on your post title.

On fridays, you are allowed to post meme and troll questions, on the condition that it's in text format only, and conforms with our other rules. These posts MUST include the [NSQ Friday] tag in their title.

If you post a serious question on friday and are looking only for legitimate answers, then please include the [Serious] tag on your post. Irrelevant replies will then be removed by moderators.



Rule 7- You can't intentionally annoy, mock, or harass other members.

If you intentionally annoy, mock, harass, or discriminate against any individual member, you will be removed.

Likewise, if you are a member, sympathiser or a resemblant of a movement that is known to largely hate, mock, discriminate against, and/or want to take lives of a group of people, and you were provably vocal about your hate, then you will be banned on sight.



Rule 8- All comments should try to stay relevant to their parent content.



Rule 9- Reposts from other platforms are not allowed.

Let everyone have their own content.



Rule 10- Majority of bots aren't allowed to participate here.



Credits

Our breathtaking icon was bestowed upon us by @Cevilia!

The greatest banner of all time: by @TheOneWithTheHair!

founded 1 year ago
MODERATORS
 

I'm currently working on learning r programming to use at work. Is there a good place whereI can ask for answers to the issues I'm running into that I cannot find by just searching online.

top 10 comments
sorted by: hot top controversial new old
[–] Vamanos 12 points 8 months ago

Agree on stack overflow. And part of learning how to program is trying to structure logic into thoughtful questions.

With R specifically I’d recommend looking into the tidyverse library for R. Or at least understand the libraries your work environment will be specifying to make sure you’re on the same page.

[–] [email protected] 6 points 8 months ago (1 children)

Ask ChatGPT. It won’t always be correct, but is patient with a new learner, so to speak. You can ask it to explain in more detail, or “is there another way to do that?” and get a different perspective on a solution.

[–] fuckwit_mcbumcrumble 6 points 8 months ago (1 children)

We use chat gpt at work a lot. Why write a ton of basic code when chat gpt will do it for you 90% error free. Then just tweak a few things and your set.

Plus that asking “can I do X” and it saying no, but you can do it some other way is a huge time saver.

[–] [email protected] 1 points 8 months ago

Thanks for the suggestion. I have been playing around with ChatGPT for a day now. This is a incredible tool. I also realised that a lot of the stuff I was trying to figure out can just be outsourced now.

[–] assa123 5 points 8 months ago* (last edited 8 months ago)

stack overflow has a lot of R knowledge, in questions already asked and in an active community. Try looking if your question has been asked there before, and if not, ask it. Many beginner questions are not about a particular language but about logic and math, maybe you can give a look at math.stackexchange also. For more simple questions, language models are very good (Chatgpt/bing, Bard)

[–] [email protected] 4 points 8 months ago

Well most replies already suggested a LLM but good old fashioned search skills work fine too.

For simple questions, as long as you know the correct terminology that is relevant, just asking the question of a search engine is usually good enough to turn up articles or stack overflow answers that'll help

If you don't know the terminology or you struggle to ask a precise question despite your knowledge, going up one level , so to speak, and consuming more information about the stuff in the immediate context, can often either fill in the gaps to allow you to ask the right question, or sometimes it's the missing bit of info you didn't know you needed to solve your actual problem.

[–] [email protected] 4 points 8 months ago

One more vote for ChatGPT. I use it all the time to get me pointed in the right direction, or to start fleshing out an algorithm. It’s a great starting place.

[–] Bye 3 points 8 months ago

Hi OP I am an R dev.

Once you have some basics, try to use the built in documentation by typing ?fun where fun is the function you are trying to use. The examples are extra useful.

[–] [email protected] 3 points 8 months ago

Definitely use the other resources mentioned here, but Codeium is a really powerful AI chat/pair programmer that I’ve been using for about a year now and it has been extremely accurate in explaining code and giving answers. If you get stuck with learning something or want examples, I would definitely consider using it. It’s a VSCode extension, so you’ll have to have VSCode to use it.

[–] [email protected] 1 points 8 months ago

This is a great resource: https://r4ds.had.co.nz/

It may not help you search for things if you don't know the correct terminology, but it is definitely helpful walking through examples of common data and visualization needs. Great to skin through for basic concepts and then keep handy as a reference.

Other that that, stack overflow for sure.