Wolfram Computation Meets Knowledge

What can I do to minimize my code when I am looking for help with an issue?

When asking for help with a coding problem, it is important to include only the essential parts of the code to ensure your audience is able to immediately understand the issue.

Leave out the unnecessary parts of your code

For example, if you were having a problem with your Plot command:

Plot[{Cos[x], Sin[x]}, {x, 0, 10}, Filling -> Bottom, Frame -> True, FrameTicks -> All, Axes -> False, PlotLabel -> "Sin and Cos Plotted"]

Removing options that are not essential to the behavior can help focus the issue. If the problem involved the option "PlotLabel", reduce the code to:

Plot[{Cos[x], Sin[x]}, {x, 0, 10}, PlotLabel -> "Sin and Cos Plotted"]

If you are not sure which options are relevant, try removing the options one at a time until the issue is no longer present. This will help indicate which options are relevant to the issue.

Minimize the content that the example relies on

For example, if your issue relies on data from a larger CSV file:

data = Import["largefile.csv"];
ListPlot[data]

See if you can reproduce the problem with a small representative data set:

data = {{1, 2}, {2, 3}, {3, 4}, {4, 5}};
ListPlot[data]


Ensure that your code is self-contained

To test that your code is not relying on any further variable or symbol definitions that need to be included, quit and restart the kernel, and then rerun the code.

For example, sending the following Plot command without the definition for fn would be difficult for someone to troubleshoot:

Plot[fn[x], {x, 0, 10}]

Make sure all functions are defined, or see if the issue is present without using any user-defined functions:

Plot[x^3 + Cos[x], {x, 0, 10}]


Este artigo foi útil?
Sim
Não

Algum comentário?

Obrigado pelo seu feedback.

Enviar

Entre em contato com o Suporte

Caso tenha alguma dúvida sobre cobrança, ativação ou suporte técnico, estamos a sua total disposição.

1-800-WOLFRAM (+1-217-398-0700 para chamadas internacionais)

Suporte ao consumidor

Segunda–Sexta
8:00–17:00 Horário Central dos EUA

  • Registro ou ativação do produto
  • Informações de pré-venda e pedidos
  • Ajuda com instalação e início

Suporte técnico avançado (para clientes habilitados)

Segunda–Quinta
8:00–19:00 Horário Central dos EUA

FSexta
8:30–10:00 & 11:00–17:00 Horário Central dos EUA

  • Suporte técnico prioritário
  • Assistência com especialistas da Wolfram
  • Ajuda com a programação da Wolfram Language
  • Suporte avançado de instalação