Now You Try!
Now You Try!
This is an interactive notebook—try making your own changes!
Just type code, and press + to evaluate:
In[]:=
Range[10]
For example, say “Hello, World!”:
In[]:=
Labeled["Hello,",GeoGraphics["World",GeoProjection"Orthographic"],Right]
Or import text from any website:
In[]:=
text=Import[URL["https://en.wikipedia.org/wiki/Machine_learning"]];
Now visualize common words from that website:
In[]:=
WordCloud[ToLowerCase[text]]
Try modifying this example to use a different website, or continue exploring below.