Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>The ones you have noticed are all part of the "learning" section of TryFSharp.org . The best way I've found to discover these is to look through the tutorials. </p> <p><a href="http://www.tryfsharp.org/Learn/data-science#hadoop">Hadoop</a></p> <p><code>#r "Samples.Hadoop.TypeProviders.dll"</code></p> <p><a href="http://www.tryfsharp.org/Learn/data-science#data-analysis">Freebase</a></p> <p><code>#r "Samples.DataStore.Freebase.dll"</code></p> <p><a href="http://www.tryfsharp.org/Learn/data-science#unlock-thousands">CSV</a></p> <p><code>#r "Samples.Csv.dll"</code></p> <p><a href="http://www.tryfsharp.org/Learn/data-science#azure-weather">Azure</a></p> <pre><code>#r "System.Data.Services.Client" #r "Samples.WindowsAzure.Marketplace" </code></pre> <p><a href="http://www.tryfsharp.org/Learn/data-science#world-bank-health">WorldBank</a></p> <p><code>#r "Samples.WorldBank.dll"</code></p> <p><a href="http://www.tryfsharp.org/Learn/financial-computing#understanding-systemic-risk">Excel.WorksheetTable</a></p> <p><code>#r "Samples.Excel.WorksheetTable.dll"</code></p> <p>A couple non-type providers (there might be ones I missed):</p> <p><a href="http://www.tryfsharp.org/Learn/financial-computing#analyzing-stock-markets">MathNet.Numerics</a></p> <p><code>#r "MathNet.Numerics.dll"</code></p> <p><a href="http://www.tryfsharp.org/Learn/financial-computing#analyzing-stock-markets">MathNet.Numerics.Fsharp</a></p> <p><code>#r "MathNet.Numerics.FSharp.dll"</code></p> <p><a href="http://www.tryfsharp.org/Learn/data-visualization#extending-tryfsharp">TryFSharp.org 's browser API</a></p> <pre><code>open TryFSharp Canvas.Show() Canvas.Clear() Canvas.SetContent "&lt;h1&gt;Try F# interop&lt;/h1&gt;Try F# interop rocks!" Canvas.RunJavaScript "document.getElementsByTagName('h1')[0].innerHTML = 'New title!'" let raphaelUndefined = Canvas.RunJavaScript "(typeof dojo === 'undefined')" if raphaelUndefined :?&gt; bool then Canvas.LoadScript "http://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js" </code></pre> <p>(for this one please note <code>Canvas.LoadScript</code> which allows you to load javascript)</p> <p>Not a file that needs to be loaded, but there is also:</p> <p><a href="http://www.tryfsharp.org/Learn/data-visualization#quick-start">Samples.Charting.DojoChart</a></p> <p><code>open Samples.Charting.DojoChart</code></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload