This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as firebase from "firebase"; | |
import { FirebaseConfig } from "../config/keys"; | |
firebase.initializeApp(FirebaseConfig); | |
const databaseRef = firebase.database().ref(); | |
export const todosRef = databaseRef.child("todos"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as firebase from "firebase"; | |
import { FirebaseConfig } from "../config/keys"; | |
firebase.initializeApp(FirebaseConfig); | |
const databaseRef = firebase.database().ref(); | |
export const todosRef = databaseRef.child("todos"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as firebase from "firebase"; | |
import { FirebaseConfig } from "../config/keys"; | |
firebase.initializeApp(FirebaseConfig); | |
const databaseRef = firebase.database().ref(); | |
export const todosRef = databaseRef.child("todos"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as firebase from "firebase"; | |
import { FirebaseConfig } from "../config/keys"; | |
firebase.initializeApp(FirebaseConfig); | |
const databaseRef = firebase.database().ref(); | |
export const todosRef = databaseRef.child("todos"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as firebase from "firebase"; | |
import { FirebaseConfig } from "../config/keys"; | |
firebase.initializeApp(FirebaseConfig); | |
const databaseRef = firebase.database().ref(); | |
export const todosRef = databaseRef.child("todos"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pandas.Series( data, index, dtype, copy) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
ornek = pd.Series() | |
print(ornek) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import numpy as np | |
veri = np.array(['a','b','c','d']) | |
seri = pd.Series(veri) | |
print(seri) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import numpy as np | |
veri = np.array(['a','b','c','d']) | |
seri = pd.Series(veri,index=[10,20,30,40]) | |
print(seri) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import numpy as np | |
veri = {'a' : 0., 'b' : 1., 'c' : 2.} | |
seri = pd.Series(veri) | |
print(seri) |
OlderNewer