Nov-01-2017, 10:46 PM
I have a few questions 1. is related to visualizing data with highcharts, and the other is related to 2. extracting data from JSON (is it a default dictionary?) into and appending the data within that to a new list.
(1) There is Python High Charts, I downloaded this library: https://github.com/kyper-data/python-highcharts , and then I found I had a problem. when I ran the scripts nothing happened because it wasn't being displayed our outputed anywhere; I realized then I don't actually know how to use a python library. How would I output that data/display it to a browser if using python version? Am I supposed to use some type of software or something else to show data from libraries like matplotlib or highcharts? What tools do I need to actually do this? Up until recently everything I have been doing is with the command line.
(2) Now for the code question: I am trying to convert this demo in javascript: https://jsfiddle.net/gh/get/library/pure...nd-volume/
Specifically this section (Javascript Code):
I apologize for the messy code, I know it's not pythonic, I'm literally just trying to get things to work.
My practice code is within a class and has been as follows:
>>For the For Loop
I'm not sure why my code is doing what it's doing, as an example, why is it only getting every 3rd or 4th letter. I understand it relates to newlist = [extract[0], extract[2]], that it can only hold one integer, and that it's saying 0 through 2 (3)? but I'm not understanding exactly why or what it's doing, or how to as a list get it to hold more than one number.
>>In General
I don't know if a dictionary would be better, or if a tuple would be better, over a list. I know tuples are immutable; does that mean I should use immutable lists, but the data I'm getting back from the JSON is all in a dictionary {} does that mean I should be using dictionaries, keys and values?
>>For the While Loop
I feel like some stuff I'm trying to do from the javascript over to the python just isn't directly translating over as python and javascript have different ways to do the same thing and that may be part of my problem as I don't know Javascript very well. I'm unable to take the self.data with self.ohlc and then append to a list. I do understand what the Javascript code is doing and am struggling to replicate that in python (my command of dictionaries and lists , or my understanding is lacking)
https://docs.python.org/2/tutorial/datas...e-on-lists
I haven't been sure whether to use append, insert, or extend at times.
I can break down the steps that the Javascript is doing that I want to replicate as this:
(1) create an empty list for data I want: volume[] and ohlc[]
(2) getJSON > Response = Data,
(3) Get elements from JSON, .length in the javascript translated into len(data) in python
(4) It iterates through the list the number of times of elements that are in the list (gotten from len)
(5) the len(data) is also used as an indexer, to create a nested list with data, to which the JSONData is supposed to append to (I don't understand how this extraction works)
(6) Each iteraction creates a new list with as many elements as was asked for in #5 (0, 1, 2, 3, 4)
But then I realized python works differently form js and really I'm just stuck. Can anyone help me figure out how I would convert the Javascript snippet into Python? And why the codes do what they do?
(1) There is Python High Charts, I downloaded this library: https://github.com/kyper-data/python-highcharts , and then I found I had a problem. when I ran the scripts nothing happened because it wasn't being displayed our outputed anywhere; I realized then I don't actually know how to use a python library. How would I output that data/display it to a browser if using python version? Am I supposed to use some type of software or something else to show data from libraries like matplotlib or highcharts? What tools do I need to actually do this? Up until recently everything I have been doing is with the command line.
(2) Now for the code question: I am trying to convert this demo in javascript: https://jsfiddle.net/gh/get/library/pure...nd-volume/
Specifically this section (Javascript Code):
// split the data set into ohlc and volume var ohlc = [], volume = [], dataLength = data.length, // set the allowed units for data grouping groupingUnits = [[ 'week', // unit name [1] // allowed multiples ], [ 'month', [1, 2, 3, 4, 6] ]], i = 0; for (i; i < dataLength; i += 1) { ohlc.push([ data[i][0], // the date data[i][1], // open data[i][2], // high data[i][3], // low data[i][4] // close ]); volume.push([ data[i][0], // the dateInto the equivalent python code. Basically I want to iterate through a JSON file I have; and extract the values from that JSON file to be appended and stored into a new list. I want it to be ordered so instead of using dictionaries I'm using lists.
I apologize for the messy code, I know it's not pythonic, I'm literally just trying to get things to work.
My practice code is within a class and has been as follows:
def data(self): response = requests.get("https://blockchain.info/charts/market-price?timespan=60days&format=json") self.data = response.json() print(self.data) # Just testing self.ohlc = [] self.volume = [] self.datalength = len(self.data) self.groupingUnits = [ ['week', [1]], ['month', [1, 2, 3, 4, 5, 6, 7]] ] """For loop that takes every '3rd' letter. It is unable to go past 4 [3] without saying an out of range error""" for extract in self.data: newlist = [extract[0], extract[2]] self.ohlc.append(newlist) print(self.ohlc) """While Loop for trying to match the javascript code """ index = 0 while index < self.datalength: # Remove while, try it without range and len for index in range(self.datalength): index = index + 1 # [data[0, 1, 2, 3, 4]] doesn't work gives key error # self.data.values() self.ohlc.append([0, 1, 2, 3, 4]) # not sure how to add self.data into this self.volume.append([0, 5]) # not sure how to add self.data into this print('date, high, low, close') print(self.ohlc) print(self.volume)Output:
Quote:{'status': 'ok', 'name': 'Market Price (USD)', 'unit': 'USD', 'period': 'day', 'description': 'Average USD market price across major bitcoin e
xchanges.', 'values': [{'x': 1504310400, 'y': 4580.38}, {'x': 1504396800, 'y': 4648.15}, {'x': 1504483200, 'y': 4344.09}, {'x': 1504569600, 'y
': 4488.72}, {'x': 1504656000, 'y': 4641.82}, {'x': 1504742400, 'y': 4654.65}, {'x': 1504828800, 'y': 4310.75}, {'x': 1504915200, 'y': 4375.55
}, {'x': 1505001600, 'y': 4329.95}, {'x': 1505088000, 'y': 4248.09}, {'x': 1505174400, 'y': 4219.03}, {'x': 1505260800, 'y': 3961.27}, {'x': 1
505347200, 'y': 3319.62}, {'x': 1505433600, 'y': 3774.26}, {'x': 1505520000, 'y': 3763.62}, {'x': 1505606400, 'y': 3746.06}, {'x': 1505692800,
'y': 4093.31}, {'x': 1505779200, 'y': 3943.41}, {'x': 1505865600, 'y': 3977.56}, {'x': 1505952000, 'y': 3658.89}, {'x': 1506038400, 'y': 3637
.5}, {'x': 1506124800, 'y': 3776.38}, {'x': 1506211200, 'y': 3703.04}, {'x': 1506297600, 'y': 3942.55}, {'x': 1506384000, 'y': 3910.3}, {'x':
1506470400, 'y': 4202.55}, {'x': 1506556800, 'y': 4201.98}, {'x': 1506643200, 'y': 4193.57}, {'x': 1506729600, 'y': 4335.36}, {'x': 1506816000
, 'y': 4360.72}, {'x': 1506902400, 'y': 4386.88}, {'x': 1506988800, 'y': 4293.3}, {'x': 1507075200, 'y': 4225.17}, {'x': 1507161600, 'y': 4338
.85}, {'x': 1507248000, 'y': 4345.6}, {'x': 1507334400, 'y': 4376.19}, {'x': 1507420800, 'y': 4602.28}, {'x': 1507507200, 'y': 4777.96}, {'x':
1507593600, 'y': 4782.27}, {'x': 1507680000, 'y': 4819.48}, {'x': 1507766400, 'y': 5325.13}, {'x': 1507852800, 'y': 5563.8}, {'x': 1507939200
, 'y': 5739.43}, {'x': 1508025600, 'y': 5647.31}, {'x': 1508112000, 'y': 5711.2}, {'x': 1508198400, 'y': 5603.71}, {'x': 1508284800, 'y': 5546
.17}, {'x': 1508371200, 'y': 5727.63}, {'x': 1508457600, 'y': 5979.45}, {'x': 1508544000, 'y': 6020.37}, {'x': 1508630400, 'y': 5983.18}, {'x'
: 1508716800, 'y': 5876.07}, {'x': 1508803200, 'y': 5505.82}, {'x': 1508889600, 'y': 5669.62}, {'x': 1508976000, 'y': 5893.13}, {'x': 15090624
00, 'y': 5772.5}, {'x': 1509148800, 'y': 5776.69}, {'x': 1509235200, 'y': 6155.43}, {'x': 1509321600, 'y': 6105.87}, {'x': 1509408000, 'y': 63
88.64}]}
>>>From the For Loop Only
[['s', 'a']]
[['s', 'a'], ['n', 'm']]
[['s', 'a'], ['n', 'm'], ['u', 'i']]
[['s', 'a'], ['n', 'm'], ['u', 'i'], ['p', 'r']]
[['s', 'a'], ['n', 'm'], ['u', 'i'], ['p', 'r'], ['d', 's']]
[['s', 'a'], ['n', 'm'], ['u', 'i'], ['p', 'r'], ['d', 's'], ['v', 'l']]
>>>From the While Loop
date, high, low, close
[['s', 'a'], ['n', 'm'], ['u', 'i'], ['p', 'r'], ['d', 's'], ['v', 'l'], [0, 1, 2, 3, 4], [0, 1, 2, 3, 4], [0, 1, 2, 3, 4], [0, 1, 2, 3, 4], [
0, 1, 2, 3, 4], [0, 1, 2, 3, 4]]
[[0, 5], [0, 5], [0, 5], [0, 5], [0, 5], [0, 5]]
>>For the For Loop
I'm not sure why my code is doing what it's doing, as an example, why is it only getting every 3rd or 4th letter. I understand it relates to newlist = [extract[0], extract[2]], that it can only hold one integer, and that it's saying 0 through 2 (3)? but I'm not understanding exactly why or what it's doing, or how to as a list get it to hold more than one number.
>>In General
I don't know if a dictionary would be better, or if a tuple would be better, over a list. I know tuples are immutable; does that mean I should use immutable lists, but the data I'm getting back from the JSON is all in a dictionary {} does that mean I should be using dictionaries, keys and values?
>>For the While Loop
I feel like some stuff I'm trying to do from the javascript over to the python just isn't directly translating over as python and javascript have different ways to do the same thing and that may be part of my problem as I don't know Javascript very well. I'm unable to take the self.data with self.ohlc and then append to a list. I do understand what the Javascript code is doing and am struggling to replicate that in python (my command of dictionaries and lists , or my understanding is lacking)
https://docs.python.org/2/tutorial/datas...e-on-lists
I haven't been sure whether to use append, insert, or extend at times.
I can break down the steps that the Javascript is doing that I want to replicate as this:
(1) create an empty list for data I want: volume[] and ohlc[]
(2) getJSON > Response = Data,
(3) Get elements from JSON, .length in the javascript translated into len(data) in python
(4) It iterates through the list the number of times of elements that are in the list (gotten from len)
(5) the len(data) is also used as an indexer, to create a nested list with data, to which the JSONData is supposed to append to (I don't understand how this extraction works)
(6) Each iteraction creates a new list with as many elements as was asked for in #5 (0, 1, 2, 3, 4)
But then I realized python works differently form js and really I'm just stuck. Can anyone help me figure out how I would convert the Javascript snippet into Python? And why the codes do what they do?