Search results for "python"
epub |eng | 0101-01-01 | Author:Second Edition [Edition, Second]

Modigliani and Modigliani performance measure (M2 measure) Introduction to portfolio theory * * * The keyword for the portfolio theory is diversification, while the keyword for diversification is correlation. In ...
( Category: Software October 8,2017 )
epub, azw3, mobi |eng | 2017-03-08 | Author:Cyberpunk University [University, Cyberpunk]

As a testament to just how beautiful Python code can be, this is how exercise 37 looks on my editor: It is more important now more than ever that you ...
( Category: Programming Languages October 4,2017 )
epub |eng | 2013-09-27 | Author:David Morgan [Morgan, David]

We Must Examine You ATHERTON: Coming from a film background, I can remember the rushes have always been a secret. I worked as a loader for a particular cameraman for ...
( Category: Arts & Literature September 27,2017 )
epub, azw3 |eng | 2017-09-05 | Author:Richard Ray [Ray, Richard]

Chapter 8 Python Programming for Raspberry Pi What you will learn in this chapter  Start programming with python  Using python for automation  Drive the hardware with python ...
( Category: Hardware & DIY September 27,2017 )
epub, mobi |eng | | Author:2015

Dshell can be installed in our lab environment by cloning the sources from GitHub at, https://github.com/USArmyResearchLab/Dshell and running install-ubuntu.py. This script will automatically download the missing packages and build the ...
( Category: Networking & Cloud Computing September 26,2017 )
azw3 |eng | 2017-03-31 | Author:Gareth Dwyer & Shalabh Aggarwal & Jack Stouffer [Dwyer, Gareth]

How it works… The demonstration in this recipe works exactly as it did in the previous recipe, Simple session-based authentication. Only the implementation differs, but the end result remains the ...
( Category: Programming Languages September 21,2017 )
epub |eng | 2017-03-30 | Author:Dwyer, Gareth & Aggarwal, Shalabh & Stouffer, Jack [Dwyer, Gareth]

( Category: Programming Languages September 21,2017 )
epub, mobi |eng | | Author:2011

Time for action – designing the delivery layer To design these screens it is often convenient to make some drawings to have a visual representation of the screen. This makes ...
( Category: Programming September 20,2017 )
epub, mobi |eng | | Author:2016

Visualizing posts as a word cloud After analyzing interactions, we move our attention back to the content of the posts. Word clouds, also called tag clouds (https://en.wikipedia.org/wiki/Tag_cloud), are visual representations ...
( Category: Programming Languages September 16,2017 )
mobi |eng | 0101-01-01 | Author:Charles Severance

If there is an error, you can reduce n to the smallest value that manifests the error, and then increase it gradually as you find and correct errors. Check summaries ...
( Category: Programming Languages September 13,2017 )
epub, pdf |eng | | Author:Erik Westra

Here, we randomly select a day, a bank code, a branch ID, and an amount, storing these values in the transfers list. Our next task is to collate this information ...
( Category: Computers & Technology September 12,2017 )
epub |eng | | Author:Opencv Computer Vision & Python 2013

Note that the approach in createLookupArray() is limited to whole-number input values, as the input value is used as an index into an array. The applyLookupArray() function works by using ...
( Category: Programming Languages September 11,2017 )
epub, mobi |eng | 2017-01-16 | Author:Kirk, Matthew

from collections import defaultdict dictionary = {'a': 'b'} dictionary['b'] # Yields KeyError default_dictionary = defaultdict(lambda: 0, dictionary) default_dictionary['b'] == 0 You’ll notice that we’re doing a bit of error handling ...
( Category: other September 10,2017 )
azw3, mobi, pdf |eng | 2017-01-16 | Author:Matthew Kirk [Kirk, Matthew]

from collections import defaultdict dictionary = {'a': 'b'} dictionary['b'] # Yields KeyError default_dictionary = defaultdict(lambda: 0, dictionary) default_dictionary['b'] == 0 You’ll notice that we’re doing a bit of error handling ...
( Category: Programming Languages September 10,2017 )
mobi |eng | | Author:2014

If there are groups that don't match, then -1 is returned: >>> math = pattern.search("Hello⇢") >>> match..start(2) -1 end([group]) The end operation behaves exactly the same as start, except that ...
( Category: Programming September 7,2017 )