User Portlet
Featured Contributor
Discussions |
---|
If I understand your request correctly this should do the trick ``` journalFile[file_] := With[ { inputs = Replace[ DownValues @ In, HoldPattern[RuleDelayed[_, input_]] :> ToString[Unevaluated[input],... |
I can't access a file at the address you listed, but if I point to any other CSV file it works: ``` In[2]:= URLDownload["https://raw.githubusercontent.com/codeforamerica/ohana-api/refs/heads/master/data/sample-csv/addresses.csv", my-file.csv"] ... |
I don't reproduce your errors. When I go to the page you linked, hit the "Copy to clipboard" button, and then paste it into a notebook it works right away. |
I think you should mention [@Anton Antonov][at0] so he sees this question. [at0]: https://community.wolfram.com/web/antononcube |
I posted a simple answer to your question on stack exchange here https://mathematica.stackexchange.com/a/303798/9490 ``` myObject /: MakeBoxes[myObject[data_], form_] := With[ {interp = Interpretation[visualRepresentation[myObject[data]],... |
All the examples I can find for using region-like primitives as integration regions use Cartesian coordinates rather than polar. So your integral would be written ``` In[95]:= Integrate[Cos[Sqrt[x^2 + y^2]] , {x, y} \[Element] Disk[{0, 0}, 1]] ... |
With all due respect the `opts___Rule` method is the *wrong way* to do options. There is a reason we have OptionsPattern and OptionValue. ``` f[x_, OptionsPattern[{"y" -> 1, "z" -> 2}]] := x^2 + OptionValue["y"]*OptionValue["z"] In[128]:=... |
I have reported this bug, thank you for bringing it to our attention. |
You should contact Wolfram Technical Support and ask directly, https://www.wolfram.com/support/contact/ |
See [How do I enable autosaving in a Mathematica notebook?](https://support.wolfram.com/34680?src=mathematica) |