Group Abstract Group Abstract

Message Boards Message Boards

Wolfram Cloud 1.51 released

Posted 7 years ago
POSTED BY: Jan Poeschko
9 Replies

Does the shift-$ for latex input work yet?

POSTED BY: Michael Sollami
Posted 7 years ago

Nice update, but not without issues. Getting strange errors in code that worked pre-update. Not a huge deal as there are other ways to do this, but the line of code below now produces the following error.

err = TimeSeriesMap[Sqrt, forecast["MeanSquaredErrors"]];

Java::fldxs: Attempting to set static field err to an incorrect type of value: TemporalData[Time: 10 Aug 2019 to 19 Aug 2019 [SpanFromLeft] Data points: 10 Paths: 1

].

POSTED BY: Michael Madsen

Thanks for the report!

Could you narrow this down to a standalone example, if it's easy? I'm not sure what forecast is in your code, and whether you're running this in some context connected to a Java class.

POSTED BY: Jan Poeschko
Posted 7 years ago
    data=Import["https://finance.yahoo.com/quote/ETH-USD/history/", "Data"];
    table = data[[2, 2, 2]];
    key=data[[2,2,1]];
    d=table[[All,1]];
    v=table[[All,5]];
    ts=TimeSeries[v,{d}];
    tsm = TimeSeriesModelFit[ts,"SARIMA"];
    forecast = TimeSeriesForecast[tsm, {10}];
    err = TimeSeriesMap[Sqrt, forecast["MeanSquaredErrors"]];
    b1 = TimeSeriesThread[{1, 1}.# &, {forecast, err}];
    b2 = TimeSeriesThread[{1,-1}.# &, {forecast, err}];
POSTED BY: Michael Madsen

Thank you! I can reproduce the issue and we're investigating. It seems that this Import is creating a (JLink) symbol err that can't be overwritten. As a workaround, you could use a different symbol name in the subsequent code.

Just for reference: Our internal ticket number is CLOUD-16289. You could search for that in future release notes, although we'll also try to comment back on this thread once we have a fix.

POSTED BY: Jan Poeschko
Posted 7 years ago

When will the WolframNotebookEmbedder get a documented API? This is still sadly not there. Is the thing properly supported now? I remember trying to use it ~6 months ago and it didn't work then.

Are there any other kinds of out-of-cloud notebook display things in the works? I'd enjoy being able to embed Mathematica 3D graphics inside web-pages and whatnot.

POSTED BY: b3m2a1 ​ 

When will the WolframNotebookEmbedder get a documented API?

Soon! We're working on polishing the last bits of its documentation.

Are there any other kinds of out-of-cloud notebook display things in the works? I'd enjoy being able to embed Mathematica 3D graphics inside web-pages and whatnot.

Rendering WL-based interactive content will probably always require some sort of "notebook", but a notebook could only contain a single cell and it could be completely transparent to the viewer that there's a notebook at play. You could put a 3D graphic into a notebook and style it in such a way that it appears as just the graphic, without any decoration around it.

If your question is about whether you need a "physical" cloud notebook (a cloud object) "backing" the embedding (which is the case now, and will still be the case with the initial version of the Wolfram Notebook Embedder library): We're thinking about adding an API such as

wolframcloud.com/render?url=...

where you could pass in a URL that serves a notebook, and it would return an HTML page, rendering that notebook on the fly. Maybe it could also take a content parameter in case you want to supply a literal Notebook (or Cell...) expression. But there are some major hurdles to be figured out with this still, so no promises.

If you're asking about something that doesn't use the cloud at all, then I don't have an answer.

POSTED BY: Jan Poeschko

This is a great release and some very nicely showcased examples here, thank you Jan! I also find cloud working much faster recently. The tools you mentioned that make cloud desktop notebooks work closer to each other are neat!

POSTED BY: Vitaliy Kaurov

The Control+Shift+1 trick is super nice (and maybe more usable than way the desktop notebook interface does). Very nice!

POSTED BY: Arnoud Buzing
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard