C# Machine Learning Projects: Nine real-world projects to build robust and high-performing machine learning models with C# by Yoon Hyup Hwang
Author:Yoon Hyup Hwang [Hwang, Yoon Hyup]
Language: eng
Format: epub, pdf
Publisher: Packt Publishing
Published: 2018-06-17T23:00:00+00:00
var top5 = numTransactionsByCountry
.GetRowsAt(new int[] {
numTransactionsByCountry.RowCount-1, numTransactionsByCountry.RowCount-2,
numTransactionsByCountry.RowCount-3, numTransactionsByCountry.RowCount-4,
numTransactionsByCountry.RowCount-5 });
top5.Print();
var topTransactionByCountryBarChart = DataBarBox.Show(
top5.GetColumn<string>("Country").Values.ToArray().Select(x => x.Equals("United Kingdom") ? "UK" : x),
top5["CustomerID"].Values.ToArray()
);
topTransactionByCountryBarChart.SetTitle(
"Top 5 Countries with the most number of transactions"
);
As you can see from this code snippet, we are using the AggregateRowsBy method in the Deedle data frame to group the records by country and count the total number of transactions for each country. Then, we sort the resulting data frame using the SortRows method and take the top five countries. When you run this code, you will see the following bar chart:
Download
C# Machine Learning Projects: Nine real-world projects to build robust and high-performing machine learning models with C# by Yoon Hyup Hwang.pdf
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
The Mikado Method by Ola Ellnestam Daniel Brolund(27138)
Hello! Python by Anthony Briggs(25980)
Secrets of the JavaScript Ninja by John Resig Bear Bibeault(25323)
Kotlin in Action by Dmitry Jemerov(24427)
The Well-Grounded Java Developer by Benjamin J. Evans Martijn Verburg(23619)
Dependency Injection in .NET by Mark Seemann(23336)
OCA Java SE 8 Programmer I Certification Guide by Mala Gupta(21969)
Algorithms of the Intelligent Web by Haralambos Marmanis;Dmitry Babenko(20874)
Grails in Action by Glen Smith Peter Ledbrook(19897)
Adobe Camera Raw For Digital Photographers Only by Rob Sheppard(17098)
Sass and Compass in Action by Wynn Netherland Nathan Weizenbaum Chris Eppstein Brandon Mathis(16857)
Secrets of the JavaScript Ninja by John Resig & Bear Bibeault(14494)
Test-Driven iOS Development with Swift 4 by Dominik Hauser(12604)
Jquery UI in Action : Master the concepts Of Jquery UI: A Step By Step Approach by ANMOL GOYAL(11878)
A Developer's Guide to Building Resilient Cloud Applications with Azure by Hamida Rebai Trabelsi(10668)
Hit Refresh by Satya Nadella(9264)
The Kubernetes Operator Framework Book by Michael Dame(8602)
Exploring Deepfakes by Bryan Lyon and Matt Tora(8458)
Robo-Advisor with Python by Aki Ranin(8397)