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}]


Была ли эта статья для вас полезной?
Да
Нет

Хотите оставить комментарий?

Спасибо за ваш отзыв.

Отправить

Обратиться в службу поддержки

Если у вас есть вопросы о ценах и оплате, активации или сомнения по техническим темам, мы готовы вам помочь.

1-800-WOLFRAM (+1-217-398-0700 для международных звонков)

Служба поддержки

Понедельник-пятница
с 08:00 до 17:00 по центральному времени США

  • Регистрация или активация продукта
  • Предпродажная информация и заказ
  • Помощь в установке и первом запуске

Расширенная техническая поддержка (для правомочных клиентов)

Понедельник-четверг
с 08:00 до 19:00 по центральному времени США

Пятница
с 08:30 до 10:00 и с 11:00 до 17:00 по центральному времени США

  • Приоритетная техническая поддержка
  • Поддержка по продуктам от экспертов Wolfram
  • Помощь специалистов по программированию на Wolfram Language
  • Расширенная поддержка установки