User Portlet User Portlet

Eric Rimbey
Discussions
Yes. That's what I meant. No matter how big I make the range of the loop, the printing starts immediately.
You'll get better answers if you post code rather than pictures, because that allows people to copy-paste your code into their own notebooks to play around with. All I can do is make a guess based on your picture. My guess is that those are `Dot`...
How familiar are you with Mathematica and the Wolfram Language? If you're new to Wolfram Language, then I recommend you don't pursue any OO programming until you've learned the evaluation paradigm that Wolfram Language uses. If you don't have a good...
Use `ColorFunction` instead of `PlotStyle`. I haven't tried to reverse engineer your code to make sure this produces your desired result, and some of your code seems suspicious (like the `FindMinimum`/`FindMaximum` stuff), but `ColorFunction` is...
Maybe ImportString["é", "HTML"] ImportString["Ω", "HTML"]
An expression like exampleVariable=10 does not really set the value of a variable. It creates a replacement rule. That distinction can usually be ignored, but it becomes important when you do Subscript[example, Variable]=10 What...
First, this is a very edge case and a very weird example to put into the documentation. I don't know why you'd ever want to do this copy-paste exercise. But anyway, I suspect that you've selected and copied the "wrong" thing. If you single-click...
GatherBy[data, First] or GroupBy[data, First] (I think you're missing an element in your list4.)
By "decimal years" do you mean something like today (April 5) is 0.26 years from the beginning of the year? DateDifference[DateObject[{2024, 1}], DateObject[{2024, 4, 5}], "Year"] (* Quantity[0.25956284153005466, "Years"] *)
One way: Position[data, {x_?(GreaterThan[2]), _}]