User Portlet User Portlet

Discussions
When Wolfram Research's `FinancialData` was in its initial Experimental stage and available in Mathematica, I recall that CUSIP and possibly ISIN were available data elements. Those data elements are no longer available in the public version of...
There are ~50 locales/languages one can load (additional) on Windows (at least Windows Pro). When adding, you have a checkbox choice. You can select all the locales/languages and see how many are then available to Mathematica after loading. And How...
Greeting Greg: Try URLDownload[ HTTPRequest[ remoteFileName, Automatic|>], localFileName] Hans
Roger: A bit late but hope the following helps. ``` SetDirectory[$UserDocumentsDirectory]; data = Transpose[ Delete[Transpose [ReplaceAll[ Import["BP_readings_mathematica_test.xlsx", {"Data", 2}, HeaderLines...
Will this help: [LHC][1] [1]: https://sites.google.com/site/efialto/mathematica/lhc_mathematica "LHC"
Gregory: Try `smtp.office365.com` instead of `outlook.office365.com` as the server for port number 587 using StartLTS. Hans
Christoph: I can confirm Rohit suggested try. ![enter image description here][1] Follow instruction from linked post on custom entities. c1=RandomEntity["USCounty"] c2=RandomEntity["USCounty"] GeoGraphics[GeoMarker[{c1,c2}]] ...
Try data = AirTemperatureData[ "WRSP", {DateObject[{2017, 5, 1}], DateObject[{2017, 5, 10}]}]; Then GroupBy[Normal[ GroupBy[Normal[data], DateObject[First[#], "Day"] & -> Last]], DateObject[First[#], "Day"] &,...
Have you tried the following: Commonest[Flatten[Map[DayRound, Map[#["Dates"] & , ret], {2}]]] Also, I would redefine how you calculate 6 months from a given date (for example, Today) ret = FinancialData[#, "Return", {DatePlus[{-6,...
The first function `shuffleInterval[x_List, n_]` takes a `List` and an another vatiable `n`, with no constraints but assumed to be `Integer`(s); which returns a `List` of `Interval`(s) and original `Integer`(s) from `x` in position order as we are...